-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (68 loc) · 1.99 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
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
<!DOCTYPE html>
<html>
<head>
<title>Color Quiz</title>
<!-- Bootstrap !-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<!-- google fonts !-->
<link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab" rel="stylesheet">
<!-- your css !-->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- link to the jQuery Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- link to the my javascript -->
<script type="text/javascript" src="assets/javascript/app.js"></script>
</head>
<body>
<header class="container" id="myTitleDiv">
<h1 id="title">Color Quiz</h1>
<div id="q0Box">
<div id="q0BoxSmall"></div>
</div>
<div id="q1Box">
<div id="q1BoxSmall"></div>
</div>
<div id="q2Box">
<div id="q2BoxSmall"></div>
</div>
<div id="q3Box">
<div id="q3BoxSmall"></div>
</div>
<div id="q4Box">
<div id="q4BoxSmall"></div>
</div>
<div id="q5Box">
<div id="q5BoxSmall"></div>
</div>
<div id="q6Box">
<div id="q6BoxSmall"></div>
</div>
<div id="q7Box">
<div id="q7BoxSmall"></div>
</div>
<div id="q8Box">
<div id="q8BoxSmall"></div>
</div>
<div id="q9Box">
<div id="q9BoxSmall"></div>
</div>
<div id="startStop"></div>
</header>
<div class="container">
<div id="question">
</div>
<div id="answers">
<div class = "color" id="answer1"></div>
<div class = "color" id="answer2"></div>
<div class = "color" id="answer3"></div>
<div class = "color" id="answer4"></div>
<div class = "color" id="answer5">
<div id="timerBox">
<p id="timer"></p>
</div>
</div>
</div>
</div>
</body>
</html>