-
Notifications
You must be signed in to change notification settings - Fork 0
/
scorecard.html
74 lines (64 loc) · 1.86 KB
/
scorecard.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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<title>your spacefreak venue quiz score</title>
<!-- For mobile devices. -->
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen" />
</head>
<body>
<header class="header">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<a href="index.html">
<h1>Spacefreak</h1>
</a>
</div>
</div>
</div>
</header>
<section>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<h2>Your score</h2>
<p class="score">You scored <span data-role="score"></span></p>
</p>
<div class="score-description">
<p data-role="score-description"></p>
</div>
<form>
<div>
<label class="text-label">
Pop your name in here and get on the leaderboard!
<input class="text-input" type="text" placeholder="Type your name here" />
</label>
</div>
</form>
<a href="leaderboard.html" class="btn btn-primary upper">Leaderboard <span class="glyphicon glyphicon-play"></span></a>
<a data-role="reset" href="question1.html" class="btn upper">Play again! <span class="glyphicon glyphicon-refresh"></span></a>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<p>This hack project has been brought to you by :
<ul>
<li>Adele Sicarius</li>
<li>Jess Lane</li>
<li>Perry Harlock</li>
</ul>
We are frickin' awesome
</div>
</div>
</div>
</footer>
<!-- Javascript loveliness. -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/main.js" ></script>
</body>