-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 1.71 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
45
46
47
48
49
50
<!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 href=
"https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css"
rel="stylesheet"/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<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=IBM+Plex+Sans:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>IATA Guesser</title>
</head>
<body>
<h1>The IATA Guesser</h1>
<div id="difficulty-chooser" style="width:800px; margin:0 auto;">
<h3 id="diff-text" style="justify-content: center;">Choose your difficulty</h3>
<button id="easy">EASY</button>
<button id="med">MEDIUM</button>
<button id="hard">HARD</button>
</div>
<div id="game-board">
<h2 id="IATA-code"></h2>
<h3 id="score-strikes"></h3>
<input type="text" id="input-field"/>
<button id="enter-btn">ENTER</button>
<p id="share-msg" hidden></p>
<button id="copy-button" hidden>COPY AND SHARE RESULTS</button>
</div>
<script src="script.js" type="module"></script>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
</body>
</html>