-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-117669340-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-117669340-1');
</script>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/stylesheets/reset.css" type="text/css">
<link rel="stylesheet" href="assets/stylesheets/nongame.css" type="text/css">
<link rel="icon" type="image/png" sizes="16x16" href="https://raw.githubusercontent.com/MoistCode/ElementBlaster/gh-pages/assets/favicons/favicon-16x16.png">
<script type="text/javascript" src='lib/bundle.js'></script>
<title>Elemental Blaster</title>
</head>
<body>
<canvas id='gameCanvas'></canvas>
<iframe
class='game-video'
src="https://www.youtube.com/embed/6PWRniGrWNQ"
frameborder="0"
allow="autoplay"
allowfullscreen>
</iframe>
<button id='restart-button'>RESTART</button>
<button id='easy-button'>Easy</button>
<button id='medium-button'>Medium</button>
<button id='hard-button'>Hard</button>
<button id='extreme-button'>Extreme</button>
<button id='endless-button'>Endless</button>
<button id='start-button'>START</button>
<div id='gitlink'>
<a href="https://github.com/MoistCode/ImaginaryNumblr">
<i class="fa fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/tommy-long-pham-4b7737158/">
<i class="fa fa-linkedin-square"></i>
</a>
</div>
</body>
</html>