-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 1.06 KB
/
Copy pathindex.html
File metadata and controls
29 lines (27 loc) · 1.06 KB
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">
<title>Delivery Man Game</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body id="homeScreen">
<!-- Home Container (Only the start button should be here) -->
<div id="homeContainer">
<div class="home-card">
<h1>Delivery Man</h1>
<p class="home-tagline">Deliver packages fast, dodge obstacles, and beat the clock.</p>
<ul class="home-controls">
<li><strong>A/D</strong> move lanes</li>
<li><strong>W/S</strong> speed up / slow down</li>
<li><strong>Space</strong> jump</li>
<li><strong>P</strong> pause, <strong>M</strong> mute</li>
</ul>
<button id="startGameBtn">Start Game</button>
<p class="home-note">Tip: Chain quick deliveries for combo bonus.</p>
</div>
</div>
<script type="module" src="./scripts/script.js"></script>
</body>
</html>