-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (37 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Year on Facade</title>
<link rel="stylesheet" type="text/css" href="css/list.css" />
<meta name="viewport" content="width=device-width" />
<meta charset="UTF-16">
<script src="js/_generated/list.js"></script>
<script src="js/list.js"></script>
</head>
<body>
<div id="header">
<h1>Year on Facade</h1>
<div id="links">
<a href="https://github.com/aelmekeev/year-on-facade" id="github">
<img src="img/GitHub_Logo.png" alt="GitHub">
</a><br />
<a id="wit" href="./what-is-this">What is this?</a>
</div>
</div>
<p>
A collection of buildings with the year of (re-)construction on their facade.
</p>
<div id="sort">
<span>Sort</span>
<input type="radio" id="by_count" name="sort" value="by_count" checked />
<label for="by_count">by count</label>
<input type="radio" id="alphabetically" name="sort" value="alphabetically" />
<label for="alphabetically">alphabetically</label>
</div>
<div id="marks">
<div id="start"></div>
<div id="end"></div>
</div>
<div id="list" />
</body>
</html>