-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 993 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
<!doctype html>
<html class="no-js" lang="">
<head>
<title>Galaxian Replica</title>
<script src="processing-1.3.6.min.js"></script>
<script src="processing.js" type="text/javascript"></script>
<script type="text/javascript">
// convenience function to get the id attribute of generated sketch html element
function getProcessingSketchId () { return 'ThirdGame'; }
</script>
</head>
<body style="background: #000;">
<div id="content">
<div style="text-align: center;">
<canvas id="ThirdGame" data-processing-sources="ThirdGame.pde"
width="800" height="650">
<p>Your browser does not support the canvas tag.</p>
<!-- Note: you can put any alternative content here. -->
</canvas>
<noscript>
<p>JavaScript is required to view the contents of this page.</p>
</noscript>
<h1 style="color: white; font-family: 'Akashi'; font-size: 90px; padding-top: 0px; margin-top: 0px;">Galaxian Replica</h1>
</div>
</div>
</body>
</html>