-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>S Trivia</title>
<!-- Bootstrap core CSS -->
<link href="css/boot.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/jumbo.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="header clearfix">
<nav>
<ul class="nav nav-pills float-right">
<li class="nav-item">
<a class="nav-link active" href="test.html">Start Over</a>
</li>
</ul>
</nav>
<h3 class="text-muted">Current Score: <span id="score">0</span></h3>
</header>
<main role="main">
<div class="jumbotron">
<h1 class="display-3">Question #<span id="qcount">1</span></h1>
<p id="question" class="lead"></p>
<div id="answers"></div>
</div>
</main>
<footer class="footer">
<p></p>
</footer>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="js/main.js"></script>
</div> <!-- /container -->
</body>
</html>