generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
quiz.html
24 lines (24 loc) · 1.04 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<meta name="author" content="mikakallberg">
<meta name="keywords" content="quiz, game, medical quiz, medical game">
<meta name="description" content="Starting page of the quiz testing anatomy and physiology">
<script src="https://kit.fontawesome.com/505d3aac1e.js" crossorigin="anonymous"></script>
<title>Medico Quiz</title>
</head>
<body>
<h1 class="heading">Medico Quiz</h1>
<div id="question-area">Question</div>
<div id="option-area"></div> <!--Content gets rendered by script.js-->
<div class="score-area">
<div class="scores" id="score-line-1"></div> <!--Content gets rendered by script.js-->
<div class="scores" id="score-line-2"></div> <!--Content gets rendered by script.js-->
</div>
<script src="assets/js/script.js"></script>
</body>
</html>