-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.35 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" id="themeStylesheetLink" href="css/themes/light.css">
<link rel="icon" href="assets/icon/square-full-solid.svg">
<link rel="preload" href="http://127.0.0.1:5501/assets/fonts/Lumen-Full.ttf" as="font" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.1/howler.min.js" integrity="sha512-L6Z/YtIPQ7eU3BProP34WGU5yIRk7tNHk7vaC2dB1Vy1atz6wl9mCkTPPZ2Rn1qPr+vY2mZ9odZLdGYuaBk7dQ==" crossorigin="anonymous"></script>
<title>Squared</title>
</head>
<body>
<div class="splash">
<!-- Animation Screen -->
<h1 class="splash-in">hello</h1>
<button id="start" class="fa-solid fa-arrow-right"></button>
</div>
<header class="wrapper">
<div class="game-details">
<span class="score">Score: 0</span>
<span class="high-score">High Score: 0</span>
</div>
<div class="play-board"></div>
<div class="controls">
<i data-key="ArrowLeft" class="fa-solid fa-arrow-left-long"></i>
<i data-key="ArrowUp" class="fa-solid fa-arrow-up-long"></i>
<i data-key="ArrowRight" class="fa-solid fa-arrow-right-long"></i>
<i data-key="ArrowDown" class="fa-solid fa-arrow-down-long"></i>
</div>
</header>
<div class="toggle" id="themeToggler"></div>
<button id="music" class="fa-solid fa-play fa-sm"></button>
<div id="gameOverModal" class="modal">
<div class="modal-content">
<h2>Game Over</h2>
<p>
<a href="https://github.com/Dimitri-Matheus" target="_blank"><i class="fa-brands fa-github fa-lg" alt="github"></i></a>
<a href="https://www.instagram.com/dimi_math/" target="_blank"><i class="fa-brands fa-instagram fa-lg" alt="instagram"></i></a>
<a href="" target="_blank"><i class="fa-brands fa-linkedin fa-lg" alt="linkedin"></i></a>
</p>
<button id="replay">OK</button>
</div>
</div>
<dialog>
<h1 id="message"></h1>
</dialog>
<script src="script.js"></script>
</body>
</html>