-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
38 lines (32 loc) · 1.07 KB
/
game.html
File metadata and controls
38 lines (32 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Games</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<!-- Header content goes here -->
</header>
<main>
<section class="games-section">
<h1>Welcome to the Games Zone!</h1>
<p>Explore and play these exciting games:</p>
<div class="game">
<h2>Sonic Online</h2>
<p>WIP</p>
<a href="https://phithagod24.github.io/pso" class="play-btn">Play Now</a>
</div>
<div class="game">
<h2>Project Needlemouse</h2>
<p>using open surge im made a sonic game im will gonna make the levels and add more stuff</p>
<a href="https://drive.google.com/file/d/1f3IUKtTvbQT2-GApOyxRkFqvnZ2yKscf/view" class="play-btn">Play Now</a>
</div>
<!-- Add more games here -->
</section>
</main>
<footer>
<!-- Footer content goes here -->
</footer>
</body>
</html>