-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (40 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Quiz</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="quiz" class="startquiz"> <br>
<div id="question">
<h2> Java Script Quiz Challange</h2>
<p> You have 3 minutes to complete the Quiz</p>
<p> Time will be subtracted for any wrong answers</p>
</div>
<div class="btn-group button">
<div id="buttongroup" class="btn-group">
<!-- <h3> <input type="text" id="userName" placeholder="Enter Name" /> </h3> -->
<button id="start" onclick=" makeIt(); go()"> Start Quiz </button>
<br>
<h3>Good Luck!</h3>
</div>
</div>
<br>
<br>
<div id="timer"></div>
<div>
<h3><span id="response"></h3>
<p></p>
</span>
</div>
</div>
<!-- <ol id="result"></ol> -->
<!-- <div><span id="response">
<p></p>
</span>
</div> -->
<script src="script.js"></script>
<script src="timer.js"></script>
</body>
</html>