startit/objekter/index.html

28 lines
600 B
HTML
Raw Normal View History

2024-09-19 11:10:04 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<script>
let pokemon = {
picachu: {
health: 100,
level: 14,
image: "img/pikachu.png",
sound: "audio/pikachu.vaw"
},
otherPoke: {
health: 100,
},
ekans: {
health: 1000,
}
}
</script>
</body>
</html>