-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-2.html
36 lines (32 loc) · 1.57 KB
/
edit-2.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
<!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 Page 2</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 Note</h1>
<form>
<br>
<label for="text">Edit Note Title: </label>
<input type="text" placeholder="Title"> <br> <br>
<label for="textarea">Edit Your Note: </label>
<textarea type="textarea" placeholder="Description">Description</textarea> <br> <br>
<label class="label" type="checkbox">Select Tags:</label>
<input class="label" type="checkbox" name="tag1" value="Work">Work
<input class="label" type="checkbox" name="tag2" value="Personal">Personal
<input class="label" type="checkbox" name="tag3" value="Family">Family
<input class="label" type="checkbox" name="tag4" value="To do">To Do
<input class="label" type="checkbox" name="tag5" value="Important">Important<br><br>
<button type="submit" value="Save">Save Edits</button>
</form>
</div>
</section>
</body>
</html>