-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) 路 1.29 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) 路 1.29 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Onyx Games</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="welcome">
<h1>Welcome to <span>The Onyx Games</span></h1>
<p>Your favorite destination for the best games!</p>
<div id="games-cards">
<div class="game-card" onclick="window.location.href='tic.html'">
<img src="tic.png" alt="Tic Tac Toe">
<h3>Tic-Tac-Toe</h3>
<p>Tic Tac Toe is a simple yet strategic two-player game.</p>
<p>Players take turns placing their respective symbols (X or O).</p>
</div>
<div class="game-card" onclick="window.location.href='snake.html'">
<img src="snake.jpg" alt="Snake Game">
<h3>Snake Game</h3>
<p>The Snake Game is a classic arcade game where players control</p>
<p>a growing snake that moves around a grid.</p>
</div>
</div>
</div>
</body>
<footer>
<p>© 2025 The Onyx Games - All Rights Reserved.</p>
<p><a href="https://github.com/hasbeejay/Onyx_AICT_Semester_Project">Github</a> | <a href="about.html">About Us</a></p>
</footer>
</html>