-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.html
More file actions
46 lines (46 loc) · 1.34 KB
/
page.html
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>noteD - Save Notes Effortlessly</title>
<link rel="stylesheet" href="popup.css">
<!-- Include Font Awesome for icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="page">
<div id="header">
<h1>noteD - Save Notes Effortlessly</h1>
<!-- Add "Add New Note" icon to header -->
<div id="headerIcons">
<a id="addNoteButton" href="#" title="Add New Note">
<i class="fas fa-plus"></i>
</a>
</div>
</div>
<!-- Add search input -->
<div id="searchContainer">
<input type="text" id="searchInput" placeholder="Search notes...">
</div>
<!-- Tab navigation -->
<div id="tabContainer">
<button class="tab-button active" data-tab="notes">Notes</button>
<button class="tab-button" data-tab="done">Done</button>
</div>
<div id="notesContainer">
<ul id="notesList"></ul>
</div>
<div id="footer">
<!-- Remove "Add New Note" button from footer -->
<!-- Add GitHub project link and version -->
<div id="projectInfo">
<a href="https://github.com/bhzdcz/noteD" target="_blank">noteD on GitHub</a> | Version: 1.0
</div>
</div>
<script src="popup.js"></script>
</body>
</html>