-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguages.html
More file actions
53 lines (44 loc) · 2.17 KB
/
languages.html
File metadata and controls
53 lines (44 loc) · 2.17 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=Noto+Sans+Arabic:wght@100..900&family=Noto+Sans+Armenian:wght@100..900&family=Noto+Sans+Bengali:wght@100..900&family=Noto+Sans+Devanagari:wght@100..900&family=Noto+Sans+Ethiopic:wght@100..900&family=Noto+Sans+Hebrew:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+KR:wght@100..900&family=Noto+Sans+Lao:wght@100..900&family=Noto+Sans+Marchen&family=Noto+Sans+Myanmar:wght@100;200;300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@100..900&family=Noto+Sans+Sinhala:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Sans+Thaana:wght@100..900&family=Noto+Sans+Thai:wght@100..900&family=Noto+Serif+Tibetan:wght@100..900&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 Country Name in its Language</h1>
<p id="score">Score: 0/0</p>
<div id="motto"></div>
<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/languagesData.js"></script>
<script src="js/languagesPage.js"></script>
</body>
</html>