-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Fun platformer game">
<title>Blue Boi</title>
<link rel="shortcut icon" type="image/jpg" href="stuff\favicon.ico"/>
<style>
html, body, div, canvas {
margin: 0;
padding: 0;
}
body {
overflow: hidden;
}
</style>
</head>
<body>
<audio id='oops'>
<source src='stuff\Oops.wav' />
</audio>
<audio id='bigBoing'>
<source src='stuff\Big Boing.wav'/>
</audio>
<audio id='spiral'>
<source src='stuff\Spiral.wav'/>
</audio>
<audio id='connect'>
<source src='stuff\Connect.wav'/>
</audio>
<canvas id = "game" width = "400" height = "100"></canvas>
<script src="script.js"></script>
<noscript>enable javascript if you wanna play this fun game</noscript>
</body>
</html>