-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
43 lines (29 loc) · 796 Bytes
/
1.html
File metadata and controls
43 lines (29 loc) · 796 Bytes
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
<html>
<head lang="en">
<meta charset="UTF-8">
<title> Quiz by VANSHAM&SIDDHARTHA </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="grid">
<div id="quiz">
<h1> QUIZ </h1>
<hr style="margin-bottom: 20px">
<p id="question"> </p>
<div class="button">
<button id="bt0"> <span id="choice0"> </span> </button>
<button id="bt1"> <span id="choice1"> </span> </button>
<button id="bt2"> <span id="choice2"> </span> </button>
<button id="bt3"> <span id="choice3"> </span> </button>
</div>
<hr style="margin-top: 50px">
<footer>
<p id="progress"> Question x of y</p>
</footer>
</div>
</div>
<script src="quiz.js"> </script>
<script src="question.js"> </script>
<script src="app.js"> </script>
</body>
</html>