-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (33 loc) · 1.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Coding Quiz</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="script.js" type="text/javascript">
</script>
</head>
<body>
<div id="quizContent">ß
<h1>
Coding Quiz Challenge
</h1>
<p>Here is a coding quiz to determine your expertise level with various html/css/js concpets.</p>
<button id="getStarted" class="btn btn-primary">
Get Started
</button>
</div>
<div id="quiz">
<div id="headerArea"> </div>
<div id="questionDiv"></div>
<hr />
<button id="next" class="btn btn-primary" display='none'>Next</button>
</div>
<div id="lastPage">
<button id="clear" class="btn btn-primary">clear</button>
</div>
<script src="script.js"></script>
</body>
</html>