-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Women in Computing Trivia</title>
<link href="https://fonts.googleapis.com/css?family=Muli|Share+Tech+Mono" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body class="h-100 text-center">
<div class="container-fluid p-0 mt-2 fixed-top">
<h1>women in computing
<span>trivia</span>
</h1>
<div id="timeline"></div>
</div>
<div class="container h-100">
<div class="row h-100 justify-content-center">
<div class="col col-lg-8 d-flex align-items-center justify-content-center">
<button id="start-button" type="button" class="btn btn-outline-secondary btn-lg">start</button>
<div id="question-container" class="w-100 p-3" style="display: none;">
<h2 id="question" class="mb-3"></h2>
<div id="answers"></div>
</div>
<div id="result-container" class="w-100 p-3" style="display: none;">
<h2 id="result" class="mb-3"></h2>
<div id="correct-answer"></div>
</div>
<div id="game-result-container" class="w-100 p-3" style="display: none;">
<h2 class="mb-3">Game Over! Here's how you did.</h2>
<div id="game-stats"></div>
<button id="reset-button" type="button" class="btn btn-outline-secondary mt-3">start over?</button>
</div>
</div>
</div>
</div>
<div class="container-fluid p-0 fixed-bottom" id="countdown-container" style="display: none;">
<div id="countdown" class="position-absolute w-100 text-white mt-1"></div>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="assets/javascript/app.js"></script>
<script src="assets/javascript/timeline.js"></script>
</body>
</html>