-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (91 loc) · 3.88 KB
/
index.html
File metadata and controls
98 lines (91 loc) · 3.88 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
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FISHIE GAME :D</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="game-container">
<!-- Background bubbles for ambiance -->
<div class="bubble-container"></div>
<!-- Main aquarium tank -->
<div class="aquarium">
<div class="water-surface"></div>
<div class="fish-container"></div>
<div class="decorations">
<div class="coral coral-1"></div>
<div class="coral coral-2"></div>
<div class="seaweed seaweed-1"></div>
<div class="seaweed seaweed-2"></div>
<div class="rock rock-1"></div>
<div class="rock rock-2"></div>
</div>
<div class="aquarium-floor"></div>
</div>
<!-- UI Elements -->
<div class="ui-panel">
<div class="stats">
<div class="stat-item">
<span class="icon">💰</span>
<span class="value" id="money">100</span>
</div>
<div class="stat-item">
<span class="icon">🐠</span>
<span class="value" id="fish-count">3</span>
</div>
<div class="stat-item">
<span class="icon">💖</span>
<span class="value" id="happiness">85%</span>
</div>
</div>
<div class="actions">
<button class="action-btn" id="feed-fish" title="Feed Fish (Cost: 5)">
<span class="icon">🍤</span>
<span class="label">Feed</span>
</button>
<button class="action-btn" id="clean-water" title="Clean Water (Cost: 10)">
<span class="icon">🧽</span>
<span class="label">Clean</span>
</button>
<button class="action-btn" id="add-decoration" title="Add Decoration (Cost: 25)">
<span class="icon">🪸</span>
<span class="label">Decorate</span>
</button>
</div>
<div class="shop">
<h3>🛒 Fish Shop</h3>
<div class="shop-items">
<button class="shop-item" data-fish="goldfish" data-cost="30">
<span class="fish-emoji">🐠</span>
<span class="name">Goldfish</span>
<span class="cost">$30</span>
</button>
<button class="shop-item" data-fish="tropical" data-cost="50">
<span class="fish-emoji">🐟</span>
<span class="name">Tropical</span>
<span class="cost">$50</span>
</button>
<button class="shop-item" data-fish="angelfish" data-cost="75">
<span class="fish-emoji">🌺</span>
<span class="name">Angelfish</span>
<span class="cost">$75</span>
</button>
</div>
</div>
</div>
<!-- Water quality indicator -->
<div class="water-quality">
<div class="quality-bar">
<div class="quality-fill" id="water-quality-fill"></div>
</div>
<span class="quality-label">Water Quality</span>
</div>
<!-- Notification system -->
<div class="notification" id="notification"></div>
</div>
<script src="script.js"></script>
</body>
</html>