-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
32 lines (29 loc) · 897 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
<!DOCTYPE html>
<html>
<head>
<title>Generic Space Shooter</title>
<meta charset="UTF-8">
<link rel="shortcut icon" href="./images/logo/favicon.ico" />
<link rel="stylesheet" href="css/main.css" />
<script src="js/require.js" data-main="js/main"></script>
</head>
<body>
<header id="top">
<div id="logo">
</div>
<nav id="buttons">
<ul>
<li><a href="index.html" title="Main Page">Game</a>
</li>
<li><a href="about.html" title="About Page">About</a>
</li>
</ul>
</nav>
</header>
<section id="gameSection">
<canvas id="gameCanvas" width="1000" height="500">
</canvas>
<h1 class="error">Your browser does not support Canvas. Please upgrade your browser.</h1>
</section>
</body>
</html>