-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02.html
More file actions
20 lines (19 loc) · 710 Bytes
/
02.html
File metadata and controls
20 lines (19 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<link href="02_icon.jpg" rel='icon'></link> <!-- this is changing the icon for our webpage-->
</head>
<body>
<h1>Notes App</h1>
<h2>Take notes and never forget</h2>
<input id="search-text" type="text" placeholder="Filter notes">
<select id="filter-by">
<option value="byEdited">Sort by last edited</option>
<option value="byCreated">Sort by recently created</option>
<option value="alphabetical">Sort alphabetically</option>
</select>
<div id="notes"></div>
<button id="create-note">Create Note</button>
<script src="02.js"></script>
</body>
</html>