-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 995 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuickJot</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="notes-header">
<input type="text" id="search-input" placeholder="Search notes..." class="search-input">
<select id="note-selector">
<option value="">Select a note...</option>
</select>
<button id="new-note">New Note</button>
<button id="delete-note">Delete Note</button>
</div>
<div class="note-info">
<span id="last-modified"></span>
<span id="word-count"></span>
</div>
<textarea id="note-content" placeholder="Please click 'New Note' to create a note, or select an existing note from the dropdown." disabled></textarea>
</div>
<script src="app.js"></script>
</body>
</html>