-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 1.45 KB
/
index.html
File metadata and controls
49 lines (44 loc) · 1.45 KB
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
<!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" />
<meta name="description" content="Quiz for developers" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<script defer src="script.js"></script>
<title>Quiz App</title>
</head>
<body>
<section id="Content">
<div id="ContentWrapper">
<h2></h2>
<ul>
<li>
<input type="radio" name="option" id="answer1" class="answer" />
<label id="option1"></label>
</li>
<!-- break for good understanding -->
<li>
<input type="radio" name="option" id="answer2" class="answer" />
<label id="option2"></label>
</li>
<li>
<input type="radio" name="option" id="answer3" class="answer" />
<label id="option3"></label>
</li>
<li>
<input type="radio" name="option" id="answer4" class="answer" />
<label id="option4"></label>
</li>
<!-- break for good understanding -->
</ul>
<div id="SubmitButton">
<button class="btn" type="submit">Submit</button>
</div>
<div id="ShowScore" class="ScoreArea"></div>
</div>
</section>
</body>
</html>