-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
57 lines (57 loc) · 2.43 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
<!DOCTYPE html>
<html>
<head>
<title>Quizer</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="script/jquery-1.7.1.min.js" type="text/javascript"></script>
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="css/style.css" type="text/css" rel="stylesheet" />
<script src="script/script.js" type="text/javascript"></script>
</head>
<body>
<noscript>
<div class="alert alert-error" style="text-align: center;">
Javascript is not enabled, Please enable javascript and <a href="#" onClick="window.location.reload()">reload this page</a>
</div>
</noscript>
<div id="main">
<div class="screen-start">
<h2>Basic HTML</h2>
<p style="font-size: 18px;">Start the quiz by clicking the start button</p>
<p>10 Questions, Time 5 Minutes</p>
<br />
<button id="qstart" class="btn btn-success btn-large">Start</button>
</div>
<div class="screen-finish">
<p style="font-size: 18px;">Thank you for taking the test</p>
<h2>You scored </h2>
<br />
<button class="btn btn-warning" onclick="window.location.reload()">Retry</button>
<button id="show-ans" class="btn btn-info">Show answers</button>
</div>
<div id="quiz">
<div id="info">
<span id="qnum">2/10</span>
<span id="time"></span>
</div>
<div id="qus">
Questions will go here
</div>
<div id="ans">
<ul class="radioList">
</ul>
</div>
<div id="nav">
<button id="fin-btn" class="btn btn-danger">Finish</button>
<button id="ans-clear" class="btn">Deselect</button>
<button id="next-btn" class="btn btn-primary">Next</button>
<button id="prev-btn" class="btn btn-primary">Previous</button>
</div>
</div>
<div id="result"><ol></ol></div>
</div>
<footer>
<p>Designed by <a href="#">DevPilot</a></p>
</footer>
</body>
</html>