29 lines
802 B
HTML
29 lines
802 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>HTML</title>
|
|
|
|
<!-- HTML -->
|
|
|
|
<!-- By MrEidamus & Stanislav Chlup -->
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="button1">
|
|
<img src = 'https://i.postimg.cc/rdcChfG6/Notpressed.png' id="unpressed">
|
|
<img src = "https://i.postimg.cc/rdJG75gD/Pressed.png" id="pressed">
|
|
</div>
|
|
<script src="main.js"></script>
|
|
<p id="clicks"></p>
|
|
<button id="reset" onclick="game.reset()">Reset</button>
|
|
|
|
<button id="buydog" onclick="game.dog()">Buy a dog for 100 clicks!</button>
|
|
<button id="buycat" onclick="game.cat()">Buy a cat for 20 dogs!</button>
|
|
</body>
|
|
</html> |