-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 2.31 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
58
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Diplomata|Yeseva+One" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
<link rel='stylesheet' href='assets/css/styles.css' />
</head>
<body>
<div class="vertical-center">
<div class='container' id='div_main'>
<div class='row'>
<div class='col-lg-12 center-block'>
<img src='assets/images/title.png' class='center-block'>
</div>
</div>
<div class='row'>
<div class='col-lg-12'>
<button id='btn_start' class='center-block'>START</button>
</div>
<div class='col-lg-12' id='div_timer'>
<h3 id='h3_timer' class='text-center'></h3>
</div>
<div class='col-lg-12' id='div_question'>
<h3 id='out_question' class='text-center'></h3>
</div>
<div class='col-lg-12' id='div_options'>
<ul id='ul_options' class='text-center'>
</ul>
</div>
<div class='col-lg-12' id='div_gif' class='center-block'>
</div>
</div>
</div>
<div class='container' id='div_game_over'>
<div class='col-lg-12'>
<img src='assets/images/title.png' class='center-block'>
</div>
<div class='col-lg-12' id='div_correct'>
<h3 id='out_correct' class='text-center'></h3>
</div>
<div class='col-lg-12' id='div_incorrect'>
<h3 id='out_incorrect' class='text-center'></h3>
</div>
<div class='col-lg-12' id='div_unanswered'>
<h3 id='out_unanswered' class='text-center'></h3>
</div>
<div class='col-lg-12'>
<button id='btn_restart' class='center-block'>RESTART</button>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src='assets/javascript/app.js'></script>
</body>
</html>