-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
55 lines (47 loc) · 1.47 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<title>Game-page</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/game.css">
<!--<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">-->
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="game" class="justify-center flex-column">
<div id="display">
<div id="displayitem">
<p class="prefix">
Question
</p>
<h1 class="main-text" id="question_counter">
1/3
</h1>
</div>
<div id="displayitem">
<p class="prefix">
Score
</p>
<h1 class="main-text" id="score">
0
</h1>
</div>
</div>
<h1 id="question">What is your answer to this question?</h1>
<div class="choice-container">
<p class="choice-prefix">A</p>
<p class="choice-text" data-number="1">Choice 1</p>
</div>
<div class="choice-container">
<p class="choice-prefix">B</p>
<p class="choice-text" data-number="2">Choice 2</p>
</div>
</div>
</div>
<script type="text/javascript" src="js/game.js"></script>
</body>
</html>