-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (21 loc) · 778 Bytes
/
index.html
File metadata and controls
27 lines (21 loc) · 778 Bytes
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
<!DOCTYPE html>
<html>
<head></head>
<body>
<input id="filterTxt" type="text" placeholder="type to filter">
<select name="sort" id="filter-by">
<option value="byEdited">Sort by Last Edited</option>
<option value="byCreated">Sort by Created</option>
<option value="byAlphabet">Sort Alphabetically</option>
</select>
<form id="addNotesFrm">
<input type="text" id="addNotesTxt" placeholder="add notes here">
<button>Add Notes</button>
</form>
<div id="addNotesDiv"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/moment-with-locales.min.js"></script>
<script src="fn.js"></script>
<script src="add-notes.js"></script>
<script src="uuidv4.js"></script>
</body>
</html>