-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.02 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.02 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
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crazy Uber</title>
<link rel="stylesheet" href="styles.css">
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.160.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.160.0/examples/jsm/"
}
}
</script>
</head>
<body>
<div id="game-container"></div>
<div id="ui-overlay">
<div id="game-title">
<h1>CRAZY UBER</h1>
<p>Pick up passengers and deliver them to earn money!</p>
<p class="desktop-instructions">Use arrow keys to drive. Hold SPACE to drift.</p>
<p class="mobile-instructions">Use on-screen buttons to drive. Hold DRIFT to drift.</p>
<button id="start-game" type="button">START GAME</button>
</div>
</div>
<script type="module" src="main.js"></script>
</body>
</html>