-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.29 KB
/
index.html
File metadata and controls
39 lines (38 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
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raf's Emoji Casino</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<body class="menu-page">
<div class="menu">
<h1>🎰 Raf's Emoji Casino 🎲</h1>
<div class="game-grid">
<a href="slots/index.html" class="game-card">
<h2>🎰 Slots</h2>
<p>Classic slot machine game</p>
</a>
<a href="plinko/index.html" class="game-card">
<h2>🏐 Plinko</h2>
<p>Drop balls for big wins</p>
</a>
<a href="dice/index.html" class="game-card">
<h2>🎲 Dice</h2>
<p>Casual Dice game with powerups</p>
</a>
<a href="blackjack/index.html" class="game-card">
<h2>♠️ Blackjack</h2>
<p>Classic card game of 21</p>
</a>
<a href="roulette/index.html" class="game-card">
<h2>🎡 Roulette</h2>
<p>Place your bets and spin!</p>
</a>
</div>
</div>
<script src="js/navigation.js"></script>
</body>
</html>