-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="card">
<div class="card-header">
<h3>Quiz: Countries of the World</h3>
</div>
<div class="card-body">
<div id="question_area">
</div>
<div id="options_area">
</div>
<div id="showRestart">
</div>
<div id="showAnswers">
</div>
</div>
<div id="card_footer" class="card-footer m3">
Number of correct answers will be shown here after you start.
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>