-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>Tamagotchi Pet Project</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="home">
<img class="consoleDay" src="tamagotchi-home.png"/>
</div>
<div class="stats">
<p id="hunger">Fome: 1</p>
<p id="sleepiness">Sono: 1</p>
<p id="boredom">Tédio: 1</p>
<p id="age">Level: 0</p>
</div>
<div class="tamagotchi">
<img id="catImg" src="tamagotchi-egg.png"/>
</div>
<div class="links">
<a href="https://www.twitch.tv/lady_mya" target="_blank">
<button id="live">Lives</button>
</a>
<a href="https://www.instagram.com/brunnamya/" target="_blank">
<button id="website">Insta</button>
</a>
</div>
<div class="actions">
<button id="feed">Rosquinha</button>
<button id="sleep">Álcool</button>
<button id="play">Piada</button>
<button id="restart">Recomeçar</button><br>
<button id="salvar" onclick="salvarEstado()">Salvar Jogo</button>
<button id="restaurar" onclick="restaurarEstado()">Carregar Jogo</button>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="./app.js"></script>
</body>
</html>