-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (87 loc) · 4.42 KB
/
Copy pathindex.html
File metadata and controls
94 lines (87 loc) · 4.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ellie's Game Collection</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>🎮 Ellie's Game Collection 🎮</h1>
<p>A collection of fun games created with my daughter</p>
</header>
<main class="games-grid">
<div class="game-card">
<div class="game-icon">🐰</div>
<h2>Eleanor's Animal Adventure</h2>
<p>Help adorable animals find their favorite treats! Play as a bouncy rabbit, graceful giraffe, or mighty elephant in this delightful movement game.</p>
<div class="game-features">
<span class="feature">🎹 Keyboard Controls</span>
<span class="feature">🎮 Gamepad Support</span>
<span class="feature">📱 Tilt Controls</span>
</div>
<a href="animal-adventure/index.html" class="play-button">Play Now</a>
</div>
<div class="game-card">
<div class="game-icon">🔍</div>
<h2>Animal Matching Game</h2>
<p>Test your animal recognition skills! Find the correct animal image based on the name given before the timer runs out.</p>
<div class="game-features">
<span class="feature">📱 Adaptive Difficulty</span>
<span class="feature">🏆 Score Tracking</span>
<span class="feature">📱 Responsive Design</span>
</div>
<a href="animal-matching/index.html" class="play-button">Play Now</a>
</div>
<div class="game-card">
<div class="game-icon">👑</div>
<h2>Princess Castle Adventure</h2>
<p>Explore a magical castle in this enchanting adventure game. Discover rooms, collect treasures, and uncover the secrets of the princess's castle.</p>
<div class="game-features">
<span class="feature">🏰 Multiple Rooms</span>
<span class="feature">💎 Treasure Collection</span>
<span class="feature">🎨 Beautiful Graphics</span>
</div>
<a href="princess-castle/index.html" class="play-button">Play Now</a>
</div>
<div class="game-card">
<div class="game-icon">☕</div>
<h2>Princess Coffee Shop</h2>
<p>Help the princess run her magical coffee shop! Take customer orders, count items carefully, and serve the perfect combination of coffee and treats.</p>
<div class="game-features">
<span class="feature">🔢 Counting Practice</span>
<span class="feature">👑 Princess Theme</span>
<span class="feature">☕ Coffee Shop Fun</span>
</div>
<a href="princess-coffee-shop/index.html" class="play-button">Play Now</a>
</div>
<div class="game-card">
<div class="game-icon">🎨</div>
<h2>Coloring Studio</h2>
<p>Fill a brand-new fractal mosaic with bright paints! Tap to choose colors, then glide your brush over bold outlines just like classic paint-by-numbers.</p>
<div class="game-features">
<span class="feature">🖌️ Tap & Drag Painting</span>
<span class="feature">🎲 Fresh Pattern Each Play</span>
<span class="feature">📱 Built for Mobile</span>
</div>
<a href="coloring-studio/index.html" class="play-button">Play Now</a>
</div>
<div class="game-card">
<div class="game-icon">🦋</div>
<h2>Magical Butterfly Garden</h2>
<p>Explore a beautiful garden filled with colorful butterflies! Match the featured butterfly by tapping the right ones as they flutter by. Practice pattern recognition in this enchanting adventure.</p>
<div class="game-features">
<span class="feature">🌈 Pattern Matching</span>
<span class="feature">✨ Beautiful Animations</span>
<span class="feature">🎯 Educational & Fun</span>
</div>
<a href="butterfly-garden/index.html" class="play-button">Play Now</a>
</div>
</main>
<footer>
<p>Made with ❤️ by a father and daughter duo</p>
<p>All games are browser-based and require no installation</p>
</footer>
</body>
</html>