-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 2.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sticky Notes</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body>
<header>
<ul class="head">
<li id="newNoteBtn" title="New Note"><i class="fas fa-plus"></i></li>
<li id="deleteAllBtn" title="Delete all"><i class="far fa-trash-alt"></i></li>
<li id="infoBtn" title="User Manual"><i class="fas fa-info"></i></li>
</div>
</header>
<div>
<div class=" hide infoContainer">
<h4>Nav buttons:</h4>
<ol>
<li> <i class="fas fa-plus"></i> button adds a new sticky note.</li>
<li> <i class="far fa-trash-alt"></i> !!! Deletes all notes from the board & local storage. This action cannot be undone!</li>
<li> <i class="fas fa-info"></i> shows user manual.</li>
</ol>
<h4>Note buttons:</h4>
<ol>
<li> <i class="far fas fa-palette"></i> Let's you choose colors of your sticky note.</li>
<li> <i class="far fa-trash-alt"></i> button deletes the sticky note from the board and local storage. This action cannot be undone.</li>
<li> The text area is meant for your text.</li>
</ol>
<h4>Enjoy taking your notes!</h4>
</div>
</div>
<main>
<div id="0" class="stickyNote hide">
<div class="noteHead">
<ul class="headBtns">
<li class="list-item"><i class="far fas fa-palette colorBtn"></i></li>
<li class="list-item"><i class="delete far fa-trash-alt"></i></li>
</ul>
<div class="noteColor">
<div class="noteColor1"></div>
<div class="noteColor2"></div>
<div class="noteColor3"></div>
<div class="noteColor4"></div>
<div class="noteColor5"></div>
</div>
</div>
<div class="noteContentContainer">
<textarea class="noteContent" placeholder="Your notes..."></textarea>
</div>
</div>
</main>
<script src="index.js"></script>
</body>
</html>