29 lines
710 B
HTML
29 lines
710 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Sir Quacksalot</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div id="foodId"></div>
|
|
<div id="petId"></div>
|
|
<div id="TTL"></div>
|
|
|
|
</div>
|
|
<button onclick="feed()" id="foodBtn">Feed</button>
|
|
<button onclick="pet()" id="petBtn">Pet</button>
|
|
<button onclick="reset()" id="resetBtn">Resurection/reset</button>
|
|
<div class="FrogFace"><img id="tamaFrog"> </div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
|
|
</html> |