mirror of
https://github.com/MrEidam/PetPet.git
synced 2026-04-17 15:43:31 +00:00
51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="shortcut icon" href="./img/icon.png" type="image/x-icon">
|
|
|
|
<title>PetPet</title>
|
|
</head>
|
|
<body>
|
|
<article class="cash">
|
|
<img src="./img/mone.png" style="height: 1rem;">
|
|
<p>Money: <span>0</span></p>
|
|
</article>
|
|
<main>
|
|
<div>
|
|
<h1><span id="nameCa">Junior</span>-<span>BOY</span></h1>
|
|
<p>Age: <span id="ageN"></span></p>
|
|
<img src="./img/tiger/baby.png" id="anim" draggable="false">
|
|
</div>
|
|
<div class="activ">
|
|
<article class="item">
|
|
<p>Joy: <span id="joyN"></span></p>
|
|
<button class="actBTN" onclick="play()">Play</button>
|
|
</article>
|
|
<article class="item">
|
|
<p>Food: <span id="fooN"></span></p>
|
|
<button class="actBTN" onclick="feed()">Feed</button>
|
|
</article>
|
|
<article class="item">
|
|
<p>Clean: <span id="cleN"></span></p>
|
|
<button class="actBTN" onclick="clearBoy()">Clean</button>
|
|
</article>
|
|
<article class="item">
|
|
<p>Health: <span id="heaN"></span></p>
|
|
<button class="actBTN" onclick="">Heal</button>
|
|
</article>
|
|
</div>
|
|
<div class="games">
|
|
<img class="gamesPromo" src="./img/promorighth.png" alt="Promo for Games">
|
|
<div class="gamesText">
|
|
<h2>Games</h2>
|
|
<a href="./Games/">Let's earn money!</a>
|
|
</div>
|
|
<img class="gamesPromo" src="./img/promoleflt.png" alt="Promo for Games">
|
|
</div>
|
|
</main>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |