-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes_menu.html
45 lines (37 loc) · 1.47 KB
/
notes_menu.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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notes | ReaderAI</title>
<link rel="stylesheet" href="notesmenu.css">
<script src="noteFetcher.js"></script>
</head>
<body class="body-tag">
<div class="header-title">
<a href="https://www.readerai.org" target="_blank">
<img style="cursor: pointer; margin-top: 2px;"
width="25px"
height="25px"
src="images/readerai_logo.svg">
</a>
<h1 class="title_notes" id="home_page" style="cursor: pointer;">
ReaderAI Notes
</h1>
<input type="text" id="searchbar" class="search-box" placeholder="Search in Notes...">
</div>
<div class="sub-headings">
<h2>Your saved Notes are listed below:</h2>
<span>Click on a displayed URL to discover all the saved notes for it.</span>
<button class="back" id="back_btn"><img src="images/back.png" width="25px" height="25px"/></button>
</div>
<div class="display-section">
<div id="recent_notes" class="recent-notes">Recent Notes
<img src="images/open_note.svg" width="20px" height="20px">
</div>
<ul id="key_list" style="cursor: pointer;" class="key-list"></ul>
<ul id="subkeys" class="subkeys-list"></ul>
<ul id="recent" class="recent-list"></ul>
</div>
</body>
</html>