Files
PetPet/index.html
2024-06-04 00:30:52 +02:00

37 lines
1.1 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="" type="image/x-icon">
<title>PetPet</title>
</head>
<body>
<div>
<h1><span>Junior</span>-<span>BOY</span></h1>
<p>Age: <span>0</span></p>
<img src="./img/tiglet_small.png" style="width:200px;">
</div>
<div class="activ">
<article class="item">
<p>Joy: <span id="joyN">10</span></p>
<button onclick="play()">Play</button>
</article>
<article class="item">
<p>Food: <span id="fooN">30</span></p>
<button onclick="feed()">Feed</button>
</article>
<article class="item">
<p>Clean: <span id="cleN">50</span></p>
<button onclick="clearBoy()">Clean</button>
</article>
<article class="item">
<p>Health: <span id="heaN">100</span></p>
<button>Heal</button>
</article>
</div>
<script src="main.js"></script>
</body>
</html>