-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (60 loc) · 1.99 KB
/
index.html
File metadata and controls
61 lines (60 loc) · 1.99 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
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Remember me</title>
<!-- <link rel="stylesheet" href="style.css" /> -->
<link rel="stylesheet" href="refactoredStyle.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=Sedgwick+Ave+Display&display=swap"
rel="stylesheet"
/>
<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=Inconsolata:wght@200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link
rel="shortcut icon"
href="/images/logo/logo.png"
type="image/x-icon"
/>
<script
src="https://kit.fontawesome.com/5322fc51ca.js"
crossorigin="anonymous"
></script>
</head>
<body>
<custom-header></custom-header>
<div class="start-game">
<div class="menu-header">
<div class="title">
<h3>Welcome</h3>
</div>
<div>
<p class="desc-text">Please choose a difficulty</p>
</div>
</div>
<div class="options">
<div class="option easy" id="easy">Easy</div>
<div class="option medium" id="medium">Medium</div>
<div class="option hard" id="hard">Hard</div>
<div class="option quit" id="quit">Quit</div>
</div>
</div>
<custom-footer></custom-footer>
<script type="module" src="dist/start.js"></script>
</body>
</html>