-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 1013 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<title>WELCOME TO COVID19 QUIZE</title>
</head>
<body>
<h1 id="heading">WECOME TO COVID19 QUIZE !</h1>
<div class="content">
<div class="submit">
<button onclick="showResults()" id="submit">Submit your Quiz</button>
<button onclick="Restart()" id="retry">Try again</button>
</div>
<div id="quize_part">
<div id="quiz"></div>
<div class="bottom_navigator">
<span ><button id="back" onclick="Back_fn()" data-catid="">Back</button> </span>
<span > <button onclick="Next_fn()" id="next" data-catid="">Next</button></span>
</div>
</div>
<div id="final">
<h1>Your Result</h1>
<div id="results"> </div>
</div>
</div>
</body>
</html>
<script src="index2.js"></script>