-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflags.html
More file actions
53 lines (44 loc) · 1.52 KB
/
flags.html
File metadata and controls
53 lines (44 loc) · 1.52 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
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Country Guessing Game</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<div id="header">
<span
><a href="anthems.html">Anthems</a> • <a href="flags.html">Flags</a> •
<a href="mottos.html">Mottos</a> •
<a href="languages.html">Languages</a></span
>
</div>
<h1>Guess the Flag</h1>
<p id="score">Score: 0/0</p>
<img id="big-flag" alt="Mystery country flag" />
<div id="button-row"></div>
<div id="answer" class="hidden"></div>
<div id="footer">
<img
src="https://upload.wikimedia.org/wikipedia/commons/5/5c/Australia.svg"
/><span
>Made in Australia • Source code available on
<a href="https://github.com/shock59/country-guessing-game"
>GitHub</a
></span
>
</div>
</main>
<script src="js/countries.js"></script>
<script src="js/flags.js"></script>
</body>
</html>