-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (36 loc) · 1.04 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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="viewport" content="user-scalable=no,width=640" />
<title>GSS::INTRO</title>
<link rel="stylesheet" type="text/css" href='styles/intro.css'></link>
<script src='scripts/jquery.1.4.4.min.js'></script>
<script type='text/javascript'>
/* Onload: */
function init_page() {
//alert('Start canvasApp');
setTimeout(canvasApp,333);
}
(function () {
window.onload = init_page;
}());
</script>
</head>
<body>
<div id="header-canvas">
<canvas id='cv' width='640' height='360'>
<div id='main-header'>
<h1>GSs</h1>
<h3>Global
<br/>Survival
<br/>Systems</h3>
<h4>WHERE THE CANVAS AT?!!</h4>
</div>
</canvas>
</div>
<div id="stream">
</div>
<!--Custom canvasApp-->
<script type='text/javascript' src='scripts/canvasIntro.js'></script>
</body>
</html>