-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
146 lines (108 loc) · 4.13 KB
/
quiz.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Cannabis Quiz | The Quiz</title>
<!-- favicon -->
<link rel="icon" href="assets/images/favicon.ico" type="image/ico" />
<!-- mobile 1st -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<!-- reset -->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!-- link CSS file -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<style>
@font-face { font-family: DS-Digital; src: url('assets/fonts/ds_digital/DS-DIGII.TTF'); }
.timer {
font-family: DS-Digital
}
</style>
</head>
<body onload="timer(30)">
<!-- background -->
<div id="background">
</div>
<!-- intro page -->
<!-- <section class="intro">
<div class="container"> --> <!-- fyi, wrapper wraps around the whole page but a container will just fill a portion of the page -->
<!-- </div>
</section> -->
<!-- quiz -->
<section class="quiz">
<div class="container">
<!-- timer -->
<div class="row timer">
<div class="col-md-2 col-md-offset-10">
<span>timer</span>
</div>
</div>
<!-- questions -->
<div class="jumbotron">
<h1>QUESTION</h1>
<br>
<p>
<span class="question">What is your name?</span>
</p>
</div>
<div class="row answers">
<div class="col-md-9 col-md-offset-2 buffer">
<span class="row1">row 1</span>
</div>
</div>
<div class="row answers">
<div class="col-md-9 col-md-offset-2 buffer">
<span class="row2">row 2</span>
</div>
</div>
<div class="row answers">
<div class="col-md-9 col-md-offset-2 buffer">
<span class="row3">row 3</span>
</div>
</div>
<div class="row answers">
<div class="col-md-9 col-md-offset-2 buffer">
<span class="row4">row 4</span>
</div>
</div>
</div>
</section>
<!-- progress bar -->
<section class="status">
<div class="container">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em;">
<span style="width:10%;">10%</span> <!-- remove written part if i can't figure out how to dynamically update it -->
</div>
</div>
</div>
</section>
<!-- quiz timer for page on the top -->
<!-- quiz progress bar at the very bottom of page -->
<!-- end page -->
<section class="end">
</section>
<!-- jQuery (place at bottom above /body) -->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript (place at bottom above /body) -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- link Js file (place at bottom above /body) -->
<script src="assets/javascript/app.js" type="text/javascript"></script>
</body>
</html>
<!--
_ *beep beep* _
| ^ | ^
| |
| _____ ~~~~~~~~~~~~ |
| __/ # # \__ ~~~~~~~~~~ |
| [___________] ~~~~~~~~~~ |
*************(O)*****(O)************************
-->