-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 805 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
33
34
35
36
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Game</title>
<meta charset="iso-8859-1">
<link rel="stylesheet" href="styles/layout.css" type="text/css">
<!--[if lt IE 9]><script src="scripts/html5shiv.js"></script><![endif]-->
</head>
<body>
<div class="wrapper row1">
<header id="header" class="clear">
<div id="hgroup">
<h1><a href="#">The vegetarian snake</a></h1>
</div>
</header>
</div>
<!-- content -->
<div class="wrapper row2">
<div id="container">
<!-- main content -->
<div id="homepage">
<section id="points">
0
</section>
<section id="game-section">
<div id="snake-container">
</div>
</section>
</div>
<!-- / content body -->
</div>
</div>
<script src="scripts/game.js"></script>
</body>
</html>