-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (69 loc) · 2.46 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
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Container for starting Quiz -->
<div class="container" id="start">
<!-- Inner Container -->
<div class="inner-cnt">
<!-- WebD Logo -->
<img id="img" src="./images/logo.png" alt="webd-image">
<h1>Quiz Website</h1>
<h2 class="tagLine">Ready to prove that you're a developer?</h2>
<!-- Personal Details -->
<div class="details">
Enter your Name
<input type="text" name="name" id="name" placeholder="Kapil Kungwani">
</div>
<!-- Start Quiz -->
<button id="start-btn">Start Quiz</button>
</div>
</div>
<!-- Container for displaying Questions -->
<div class="container" id="question-cnt">
<!-- Inner Container -->
<div class="inner-div">
<h2 class="question">Questions</h2>
<!-- Options -->
<ul>
<li>
<input type="radio" name="answer" class="answer" id="ans1">
<label for="ans1" id="option1">options</label>
</li>
<li>
<input type="radio" name="answer" class="answer" id="ans2">
<label for="ans2" id="option2">options</label>
</li>
<li>
<input type="radio" name="answer" class="answer" id="ans3">
<label for="ans3" id="option3">options</label>
</li>
<li>
<input type="radio" name="answer" class="answer" id="ans4">
<label for="ans4" id="option4">options</label>
</li>
</ul>
<!-- Button to move on Next Questions -->
<button id="submit">Next</button>
</div>
</div>
<!-- Display Score -->
<div class="container" id="score-cnt">
<div class="inner-score">
<div class="scoreDisplay" id="scoreDisplay">
</div>
</div>
</div>
<div class="wrapper">
<footer>
Made with ❤️ by Kapil Kungwani
</footer>
</div>
<script src="main.js"></script>
</body>
</html>