-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (67 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Clashboard</title>
<!-- Meta data -->
<meta charset="utf-8">
<meta name="keywords" content="clashboard, dashboard, web, ux, user exerience design, yoobee, demographic">
<meta name="description" content="Want to get an overall idea of who your classmates are? Clashboard, easy as pie (charts) to see what you want.">
<meta name="author" content="Massey Isa'ako">
<!-- Font Awesome Styleheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Linking to external CSS stylesheet -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>CLASHBOARD</h1>
<h4>WEB & UX</h4>
</div>
<div id="charts-container">
<div class="chart-group">
<h2>Favourite Travel Destination</h2>
<div id="studentTravel"></div>
</div>
<div class="chart-group">
<!-- This is the chart container -->
<div id="studentAge" class="chart-dimensions"></div>
<!-- This is where information is displayed when the user selects a section of the chart -->
<div id="agePush" class="node-dimensions">
<h2>Age</h2>
<span id="age-output">?</span>
<h4>years</h4>
</div>
</div>
<div class="chart-group">
<!-- This is the chart container -->
<div id="studentGender" class="chart-dimensions"></div>
<!-- This is where information is displayed when the user selects a section of the chart -->
<div id="genderPush" class="node-dimensions">
<h2>Gender</h2>
<span id="gender-placeholder">?</span>
<i id="male" class="fa fa-male" aria-hidden="true"></i>
<i id="female" class="fa fa-female" aria-hidden="true"></i>
<h4 id="gender-identifier">unknown</h4>
</div>
</div>
<div class="chart-group">
<!-- This is the chart container -->
<div id="studentHeight" class="chart-dimensions"></div>
<!-- This is where information is displayed when the user selects a section of the chart -->
<div id="heightPush" class="node-dimensions">
<h2>Height</h2>
<span id="height-output">?</span>
<h4>cm</h4>
</div>
</div>
</div>
</div>
<!-- jQuery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Google Charts Library -->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<!-- My Script -->
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>