-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (63 loc) · 2.75 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fireball Hero</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Fireball Hero App" />
<meta name="title" property="og:title" content="Fireball Hero" />
<meta property="og:type" content="Website" />
<meta
name="image"
property="og:image"
content="https://live.staticflickr.com/65535/50691792456_50c804121f_k.jpg" />
<meta name="description" property="og:description" content="Fireball Hero App" />
<meta name="author" content="Jose Gaston" />
<link href="./reset.css" rel="stylesheet">
<link href="./index.css" rel="stylesheet">
<link rel="icon" type="image/png" href="./images/left.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="./dist/main.js"></script>
</head>
<body>
<ul class="left-bar">
<li class="title">FIREBALL HERO</li>
<li>Use the arrow keys to move.</li>
<li>More from me:
<ul class="more-from-me">
<li>
<a href="https://www.linkedin.com/in/jose-maria-canuto-b-gaston-904411115/" target="_blank">
<img src="./images/linkedin.png" alt="LinkedIn Link"/></a>
</li>
<li>
<a href="https://github.com/jmcbgaston" target="_blank">
<img src="./images/github.png" alt="GitHub Link"/></a>
</li>
</ul>
</li>
</ul>
<ul class="center-bar">
<ul class="main-bar">
<li id="game-detail-score">Waves Survived: 0</li>
<li>
<button id="sound-button" value="playing">mute</button>
<audio id="audio" src="./retro.mp3"></audio>
</li>
</ul>
<ul class="main-screen">
<figure class="fireball-hero-game">
<button id="start-button">-- Start --</button>
</figure>
</ul>
</ul>
<ul class="right-bar">
<li>Pick up the star.</li>
<li>Dodge incoming fireballs.</li>
<li>The longer you survive, the better your score.</li>
</ul>
</body>
</html>
<!-- retro.mp3 citation -->
<!-- info: "Retro Platforming" by David Fesliyan -->
<!-- url: https://www.fesliyanstudios.com/royalty-free-music/download/retro-platforming/454 -->