-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
31 lines (31 loc) · 931 Bytes
/
quiz.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./quiz.css" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet"
/>
<title>Quiz Project</title>
</head>
<body>
<div class="container">
<div class="game">
<div class="content">
<h1 class="question"></h1>
<div class="answers"></div>
</div>
<button class="submit">Submit</button>
</div>
<div class="result">
<h1>Congratulations</h1>
<h3 class="correct"></h3>
<h3 class="wrong"></h3>
<h2 class="score"></h2>
<button class="play">Play Again</button>
</div>
</div>
<script src="./quiz.js"></script>
</body>
</html>