-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneon.html
46 lines (36 loc) · 1.23 KB
/
neon.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An engaging math game for all ages.">
<title>Snake Bite - Neon Version</title>
<link rel="stylesheet" href="neon.css">
<link rel="icon" href="img/favicon.png" type="image/x-icon">
</head>
<body>
<!-- Header with logo -->
<header>
<img src="img/logo.png" alt="Game Logo" class="logo">
</header>
<!-- Main container for the game -->
<main>
<div class="score" aria-live="polite">0</div>
<!-- Game stage area -->
<div class="stage">
<!-- Placeholder for initial content or game elements -->
</div>
<a href="index.html"rel="noopener noreferrer">
<button class="corner-button">Original Version</button>
</a>
</main>
<!-- Footer for additional information -->
<footer>
<p>© 2024 SnakeBite. All rights reserved.</p>
<p>Develop By<a href="https://aeroer.live" target="_blank" rel="noopener noreferrer">Aeroer.Live</a></p>
</footer>
<!-- JavaScript file loaded with defer for better performance -->
<script src="main.js" defer></script>
<script src="sound.js" defer></script>
</body>
</html>