-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (42 loc) · 1.35 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
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Quiz</title>
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>A Quiz</h1>
<div class="quiz-container">
<h2>On Sandhis in Sanskrit Grammar</h2>
<div class="quiz-progress">
<div></div>
</div>
<div class="quiz-body">
<div class="quiz-start-page">
<h3>Welcome to quiz!</h3>
</div>
<div class="quiz-questions-container">
<form name="quiz-questions-form" class="quiz-questions-form" method="GET" action="/script.js"></form>
</div>
<div class="quiz-score-page">
<h3>Congratulations!</h3>
</div>
</div>
<div class="quiz-nav">
<button class="quiz-nav-button start">Start</button>
<button class="quiz-nav-button back">⇦ Back</button>
<button class="quiz-nav-button next">⇨ Next</button>
<button class="quiz-nav-button submit">Submit</button>
<button class="quiz-nav-button check">Check Answers</button>
</div>
</div>
</main>
<script src="questions.js"></script>
<script src="script.js"></script>
</body>
</html>