-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.36 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
<!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.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="hackerbird.gif" type="image/x-icon">
<title>Hackerbird</title>
</head>
<body>
<div class="loading">
<div class="loader">Hackerbird.</div>
<div class="loadbar">
</div>
<div class="loading-message">Loading...</div>
</div>
<div class="app-container hidden">
<a class="top" href="#top">↑<a>
<div class="app-title" name="top">Hackerbird.<br>
<div class="small">A HackerNews client. Made with ❤️ and ☕️ by David Uzondu</div>
</div>
<div class="selectors">
<button class="topstories">
Top Stories
</button>
<button class="ask">
Ask
</button>
<button class="show">Show</button>
<button class="jobs">
Jobs
</button>
</div>
<div class="posts-container">
</div>
</div>
<script src="app.js"></script>
</body>
</html>