-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (73 loc) · 2.35 KB
/
index.html
File metadata and controls
84 lines (73 loc) · 2.35 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Synthwave</title>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
</head>
<body>
<div id="overlay"></div>
<div id="directions-ui" class='transparent'>
<h1>DIRECTIONS</h1>
<p>Get the highest score by destroying as many enemies as you can before losing all your health.</p>
<div class='direction-item'>
<img src="src/icons/wasd.png" alt="">
<p>MOVE</p>
</div>
<div class='direction-item'>
<img src="src/icons/mouse.png" alt="">
<p>LOOK AROUND</p>
</div>
<div class='direction-item'>
<img src="src/icons/mouse-click.png" alt="">
<p>SHOOT</p>
</div>
<div class='direction-item'>
<img src="src/icons/spacebar.png" alt="">
<p>JUMP</p>
</div>
<div class='direction-item'>
<div id='directions-health'></div>
<p>HEALTH</p>
</div>
<div class='direction-item'>
<div id='directions-energy'></div>
<p>GUN ENERGY</p>
</div>
<button id='directions-dismiss-button' class='button'>GOT IT</button>
</div>
<div id="hud-ui" class='transparent'>
<p id="game-score">SCORE: 0</p>
<div class="health-bar-container">
<div id="current-health"></div>
</div>
<div class="gun-energy-bar-container">
<div id="current-gun-energy"></div>
</div>
</div>
<div id="title-ui">
<div>
<h1>SYNTHWAVE</h1>
</div>
<div style='display: flex; flex-direction: column;'>
<button id='play-button'>PLAY</button>
<button id='directions-button' class='button'>Directions</button>
</div>
<div class='score-recap-container'>
<p id='high-score'>HIGH SCORE: <br/>0</p>
<p id='title-score'>YOUR SCORE: <br/>0</p>
</div>
<div class='links-contianer'>
<a class='button' target='_blank' href="https://davidrichard23.github.io">Portfolio</a>
<a class='button' target='_blank' href="https://linkedin.com/in/davidrichard23">LinkedIn</a>
<a class='button' target='_blank' href="https://angel.co/davidrichard23">AngelList</a>
<a class='button' target='_blank' href="https://github.com/davidrichard23">Github</a>
</div>
</div>
<div id="mute-button">
<img id='mute-img' src="" alt="">
</div>
<script src="bundle.js"></script>
</body>
</html>