-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
38 lines (29 loc) · 1.02 KB
/
Index.html
File metadata and controls
38 lines (29 loc) · 1.02 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
<!--CAR GAME VERSION 1.0 - Eva Yu - AUG/01/2016 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CarGame Version 1.0</title>
<!--JS Scripts-->
<script type="text/javascript" src="scripts/jquery-3.1.0.js"></script>
<script type="text/javascript" src="scripts/cargame-v1.js"></script>
<!-- TO BE USED AFTER TESTING SCRIPT
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
-->
<!-- STYLE SHEETS -->
<link rel="stylesheet" type="text/css" href="style/normalize.css"></style>
<link rel="stylesheet" type="text/css" href="style/cargame-v1.css"></style>
</head>
<body>
<div id= "header-banner" class = "header-banner">
<!--BANNER GOES HERE-->
<h1>TEMP BANNER TEXT</h1>
</div>
<div id="game-board-block" class = "game-board">
<!--GAME GOES HERE-->
<canvas id="game-board-canvas" class="game-board" width="910px" height="650px">
</canvas>
<p id="game-board-incompatible-message" class="game-board-incompatible-message"></p>
</div>
</body>
</html>