-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 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
<html>
<head>
<title>Vote for Justices!</title>
<link href='https://fonts.googleapis.com/css?family=Playfair+Display+SC:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="chart.js"></script>
</head>
<body>
<header>
<h1>Pick Your Favorite Supreme Court Justice!</h1>
<h2>Which Justice Will Reign Supreme?</h2>
</header>
<div id="choices">
<section id="choice0">
<img id="pic0" />
<p id="text0"></p>
</section>
<section id="centcolumn">
<img id="seal" src="images/seal.png" alt="Seal of the Supreme Court" />
<button id="response">Are you ready to pass judgement on these justices? Click a picture to choose your favorite.</button>
</section>
<section id="choice1">
<img id="pic1" />
<p id="text1"></p>
</section>
</div>
<div id="chart">
<div id="wrapper">
<canvas id="canvas" width="450" height="300"></canvas>
<button id="reset">Reset the votes</button>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>