-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 2.79 KB
/
index.html
File metadata and controls
64 lines (56 loc) · 2.79 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Forest's Quiz</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Forest Olsen">
<meta name="description" content="A simple radio button quiz of random questions, styled and configured to demonstrate the web page development skills of the author.">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/stylesheet.css" />
<!--<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lobster" />
-->
</head>
<body>
<div class="container">
<div class="row justify-content-center page_center">
<div class="col-sm-6 text-center " id="landing_panel">
<h1 class="display-2 main_text">Welcome to Forest's Quiz</h1>
<button type="button" class="btn btn-primary btn-lg btn_clear" id="start_btn">Start</button>
</div>
<div class="card" id="quiz_panel">
<div class="card-body">
<form method="post" id="quiz_form">
<!--This Div houses all question divs /-->
<div id="question_panel">
</div>
</form>
</div>
<div class="card-footer btn-group">
<button type="button" class="btn btn-secondary" id="prev_question_btn">Prev Question</button>
<button type="button" class="btn btn-primary" id="next_question_btn">Next Question</button>
</div>
</div>
<div class="col-sm-6 text-center" id="ending_panel">
<div class="row justify-content-center">
<div class="col-sm-8 display_score">
<span id="display_score_text"></span>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-2 rounded display_score" id="display_score_number_container">
<span id="display_score_number"></span>
</div>
</div>
<div class="row justify-content-center">
<button type="button" class="btn btn-primary btn-lg" id="restart_btn">Start Quiz Over</button>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/quiz_application.js"></script>
</body>
</html>