forked from rinonTen/country-quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.2 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Country Quiz</title>
<link rel="stylesheet" href="css/quiz.css">
<body lang="en">
<main>
<header>
<h1>Country quiz</h1>
</header>
<form action="." method="GET">
<fieldset id="board">
<ol>
</ol>
</fieldset>
<div class="form_buttons">
<button type="submit">Next</button>
</div>
</form>
<footer>
<p>
<a href="https://tactile.co.za/">Shaun @ tactile.co.za</a>
</p>
</footer>
</main>
</body>
<template id="template_choice">
<li>
<input type="radio" name="answer" required data-attr="value, id" data-attr-value="id, id">
<label data-attr="for" data-attr-value="id">
<span data-inner-value="name"></span>
</label>
</li>
</template>
<template id="template_questions">
<legend>
<img alt width="84" height="54" data-attr="src" data-attr-value="flag">
Which country does this flag belong to?
</legend>
<legend>
<strong id="capital_name" data-inner-value="capital"></strong> is the capital city of which country?
</legend>
</template>
<script src="js/quiz.js" type="module"></script>