-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
61 lines (53 loc) · 1.62 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, shrink-to-fit=no"
/>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Podkova:wght@500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css" />
<title>Librarian</title>
<meta name="description" content="A simple Kindle clippings parser and organizer" />
</head>
<body>
<div class="header">
<h1 class="logo">
<a href="./index.html" class="logo">
📚
<span class="logo-text">
Librarian
</span>
</a>
</h1>
<div class="flex"></div>
<!-- <button>☕️ Buy me a coffee</button> -->
<button
onclick="window.open('https://github.com/ston1x/librarian', '_blank')"
>GitHub
</button>
</div>
<div class="greeting">
<h2>👋🏼 Hi,</h2>
<p>You can upload your clippings.txt file from your Kindle and we will sort it out!</p>
</div>
<div id="drop-area">
<p>Drop your file here (.txt only)</p>
or
<p>
<input type="file" id="file-selector" accept=".txt">
</p>
</div>
<h1 id="separator">
</h1>
<div id="status"></div>
<div id="books-list">
<div id="test-book"></div>
</div>
<script src="index.js"></script>
</body>
</html>