-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 893 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A game about binge eating.">
<title>Endless Appetite</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<img src="logo.webp" alt="Endless Appetite Logo" class="background-logo">
<div class="start-text">Press Enter to start</div>
<footer>
<p>© 2025 Ivan Belousov. All rights reserved.</p>
</footer>
<script src="music.js"></script>
<script>
musicPlayer.play();
document.addEventListener('keydown', function(event) {
if (event.key === 'Enter') {
window.location.href = 'controls.html';
}
});
</script>
</body>
</html>