-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (52 loc) · 1.66 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
51
52
53
<!DOCTYPE html>
<html lang="fr">
<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" />
<title>Alphabet Game</title>
<link rel="stylesheet" href="css/style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800,900"
/>
</head>
<body>
<div class="container-home">
<div class="home-start">
<p><i class="fas fa-gamepad"></i> Start</p>
</div>
</div>
<div class="container-game">
<div class="row-model"><!-- Injected word --></div>
<div class="row-input"><!-- Injected inputs --></div>
<div class="row-menu">
<ul class="row-menu__navigation">
<li class="row-menu__new" data-word="">
<i class="fas fa-magic"></i>
</li>
<li class="row-menu__clear"><i class="fas fa-times"></i></li>
<li class="row-menu__count">
<span style="font-size: 3vh; color: rgba(255, 255, 255, 0.9)"
>Cookies</span
>
<!-- Injected cookies -->
</li>
</ul>
</div>
<div class="illustration">
<div class="illustration-modal">
<img src="" alt="" />
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script
type="text/javascript"
src="https://kit.fontawesome.com/d35975edad.js"
></script>
<script src="js/app.js"></script>
<script src="js/speaker.js"></script>
<script src="js/modal.js"></script>
<script src="js/gameManager.js"></script>
</html>