-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (54 loc) · 2.2 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
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>People of Linz</title>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/layout.css" type="text/css">
<script src="js/jquery-2.1.4.min.js" charset="UTF-8"></script>
<script src="//d3js.org/d3.v3.min.js" charset="UTF-8"></script>
<script src="js/LineChart.js" charset="UTF-8"></script>
<script src="js/main.js" charset="UTF-8"></script>
</head>
<body>
<header class="header">
<div class="gen-sel-menu">
<div class="gen-btn Babies active" genName="Babies"><img class="switchImg" src="assets/crawling.png" /><p>0-3</p></div>
<div class="gen-btn Children active" genName="Children"><img class="switchImg" src="assets/jumping28.png" /><p>4-12</p></div>
<div class="gen-btn Teens active" genName="Teens"><img class="switchImg" src="assets/group58.png" /><p>13-17</p></div>
<div class="gen-btn Adults active" genName="Adults"><img class="switchImg" src="assets/businessmen18.png" /><p>18-59</p></div>
<div class="gen-btn BestAgers active" genName="BestAgers"><img class="switchImg" src="assets/old33.png" /><p>60-120</p></div>
</div>
<div class="sliderWrapper">
<input class="yearSlider" type="range" min="2002" max="2015" step="1" />
<div class="sliderRange">02 | 03 | 04 | 05 | 06 | 07 | 08 | 09 | 10 | 11 | 12 | 13 | 14 | 15</div>
</div>
<h1>Linz</h1>
</header>
<section class="board">
<section class="dist-sel">
<form>
</form>
</section>
<section class="map">
<img src="assets/STB_1957.png" title="Linz">
</section>
<section class="diagrams">
<section class="avg-age-linz-diagram">
<h3>Average Age of Linz</h3>
</section>
<section class="piecharts">
<section class="piechart chart1"></section>
<section class="piechart chart2"></section>
<section class="piechart chart3"></section>
<section class="piechart chart4"></section>
</section>
</section>
</section>
<footer>
</footer>
<script>
lineChart.createAVGAgeLinzChart();
</script>
</body>
</html>