-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
47 lines (46 loc) · 1.77 KB
/
edit.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/stylesheet.css">
<title>Edit Note</title>
</head>
<body>
<section class="container">
<div class="app-box">
<img id="important-note" src="Style/images/lets-do-it.png" alt="Let's do it note">
<h1>Edit Your Noteez Notes</h1>
<span>Select a note to edit:</span>
<a href="edit-2.html"><section class="note" id="fake-note-1">
<h4>Friday Errands</h4>
<span>Pick up dry cleaning</span>
<span>Make cupcakes for party</span> <br><br>
<span id="to-do" class="tag">To Do</span>
</section>
</a>
<section class="note" id="fake-note-2">
<h4>Family Vacation Ideas</h4>
<span>Mountain Cabin</span>
<span>Beach Weekend</span>
<span>Road Trip</span> <br><br>
<span id="Family"class="tag">Family</span>
</section>
<section class="note" id="fake-note-3">
<h4>Grocery List</h4>
<span>Oat Milk</span>
<span>Salad Mix</span>
<span>Black Bean burgers</span> <br> <br>
<span id="to-do" class="tag">To Do</span>
<span id="important" class="tag">Important</span>
</section>
<section class="note" id="fake-note-4">
<h4>Drink Water</h4> <br>
<br>
<span id="personal" class="tag">Personal</span>
</section>
</div>
</section>
</body>
</html>