-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
45 lines (45 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Coding Club Project</title>
<style>
body{
background-color: #001145;
color: #ffffff;
background-image: url(pagebg.png);
}
#content{
text-align: center;
}
#can{
border: 1px solid #0000ff;
}
.vr{ height: 12px; }
.vr-big{ height: 80px; }
a{ color: #88ff88; }
a:hover{ color: #ffffff; }
a:active{ color: #88ff88; }
</style>
</head>
<body>
<div id="content">
<h1>Bad Asteroid Game</h1>
<h4>made from scratch (582 lines of JavaScript)</h4>
<h4>All code, gfx, and audio by me, Finished Apr 10, 2022</h4>
<h4>actually I ran out of time to add audio so scratch that last part</h4>
<canvas id="can" width="0" height="0">
Your browser does not support the HTML5 canvas.
</canvas>
<div class="vr"></div>
<h4>Left and Right to Turn, Up to Move, Z to Shoot</h4>
<div class="vr"></div>
<h2><a href="doc.html">Learn how this works!</a></h2>
<div class="vr-big"></div>
<img src="vim.gif"><img src="linux.gif"><img src="firefox.gif">
<br>
<small>developed with Vim under Linux, tested on Firefox (the right way)</small>
</div>
<script src="asteroids.js"></script>
</body>
</html>