-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (44 loc) · 1.41 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Petrix</title>
<link rel="icon" href="./assets/images/icon.png" type="image/png">
<link rel="stylesheet" href="./assets/css/landingPage.css">
<link rel="stylesheet" href="./assets/css/general.css">
<link rel="stylesheet" href="./assets/css/game.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
</style>
</head>
<body>
<script type="module" src="/main.js"></script>
<div id="pet-selection-popup" class="popup hidden">
<h2>Choose Your Pet</h2>
<div id="pet-options" class="pet-container">
<!-- Options will be dynamically added by JavaScript -->
</div>
<button id="start-button" class="start-button">PLAY</button>
</div>
<div id="game-popup" class="hidden">
<!-- status bar-->
<div id="status-bar">
<div>Health:<span id="life-status">100</span></div>
<div>Hunger:<span id="hunger-status">100</span></div>
<div>Hygiene:<span id="hygiene-status">100</span></div>
<div>Happiness:<span id="happiness-status">100</span></div>
</div>
<!-- interaction-bar -->
<div id="interaction-bar">
<!-- Menu -->
<button id="interaction-title">Menu</button>
<!-- button -->
<div id="interaction-buttons">
<button id="feed-button">Feed</button>
<button id="clean-button">Bathe</button>
<button id="play-button">Play</button>
</div>
</div>
</div>
</body>
</html>