-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 828 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
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="arxiv.png" />
<link rel="stylesheet" href="./style.css">
<title>arXiv Later</title>
</head>
<body>
<nav class="navbar">
<ul>
<li>
<a href="#">arXiv later</a>
</li>
<li>
<a href="#" id="export">Export</a>
</li>
<li>
<input class="hide" type="file" id="import" name="import" accept="application/json">
<label class="input-label" for="import">Import</label>
</li>
</li>
<li class="navbar-ending">
<input type="text" name="search">
</li>
</ul>
</nav>
<div class="arxiv">
</div>
<script src="./index.js"></script>
</body>
</html>