startit/team/oppgave1/uke4/index.html

23 lines
454 B
HTML
Raw Normal View History

2024-08-26 13:59:21 +02:00
<!DOCTYPE html>
<html lang="en">
2024-08-28 12:17:11 +02:00
2024-08-26 13:59:21 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-08-28 12:17:11 +02:00
<title>Sir Quacksalot</title>
2024-08-26 13:59:21 +02:00
</head>
2024-08-28 12:17:11 +02:00
<style>
</style>
2024-08-26 13:59:21 +02:00
<body>
2024-08-28 12:17:11 +02:00
<div id="foodId"></div>
<div id="petId"></div>
<button onclick="feed()" id="foodBtn">Feed</button>
<button onclick="pet()" id="petBtn">Pet</button>
<img id="tamaFrog">
<script src="script.js"></script>
2024-08-26 13:59:21 +02:00
</body>
2024-08-28 12:17:11 +02:00
2024-08-26 13:59:21 +02:00
</html>