-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
28 lines (27 loc) · 830 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Annotator</title>
<link rel="stylesheet" href="popup.css">
<script src="html2pdf.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div class="navbar">
<div class="sticky-search-bar">
<div id="input">
<input id="keyword" type="text" placeholder="Search here..."/>
</div>
<div id="select">
<select name="sort" id="dateSelect">
<option value="Date">Sort by Date</option>
<option value="style">Sort by Style</option>
</select>
</div>
</div>
<div id="download"></div>
</div>
</body>
</html>