-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 939 Bytes
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 939 Bytes
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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOOM Web Clone</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="loading">
<h1>DOOM Web Clone</h1>
<p>Click to start</p>
<div class="loading-bar"><div></div></div>
</div>
<div id="game-wrapper">
<canvas id="game"></canvas>
<canvas id="hud"></canvas>
</div>
<div id="death-screen">
<h1>YOU DIED</h1>
<p class="blink">Press R to restart</p>
</div>
<div id="win-screen">
<h1>MISSION COMPLETE</h1>
<p>You defeated all enemies!</p>
<p class="blink">Press R to restart</p>
</div>
<div id="controls-info">
<p>WASD: Move | Mouse: Look | Click: Shoot | 1-4: Weapons</p>
</div>
<script src="js/engine.js"></script>
<script src="js/audio.js"></script>
<script src="js/game.js"></script>
<script src="js/main.js"></script>
</body>
</html>