-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.html
More file actions
49 lines (36 loc) · 1.28 KB
/
viewer.html
File metadata and controls
49 lines (36 loc) · 1.28 KB
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
49
<!DOCTYPE html>
<html>
<head>
<title>SCSI: EcoSystem32</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style/reset.css">
<link rel="stylesheet" type="text/css" href="style/main.css">
<!--<link rel="icon" type="img/png" href="style/favicon.png" style="width:30px;">-->
<!-- IMPORTED SCRIPTS -->
<link href='https://fonts.googleapis.com/css?family=Oswald:400,700|Lato:400,900' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- NEED FIREBASE LATER -->
<style>
html{
background-color: #1A1A1A;
background-image: url('style/img/charcoal-trans-hex.png');
background-size: 200px;
background-repeat: repeat;
}
</style>
</head>
<body>
<header>
<a href="index.html"><img src="style/img/scsi-logo.png"></a>
<h1>EcoSystem32</h1>
</header>
<div class="headerSpace"></div>
<canvas id="game-canvas" width="400px" height="400px"></canvas>
<script src="bundle.js"></script>
<script type="text/javascript">
viewerMain();
console.log("LOADED MAIN");
</script>
</body>
</html>