-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.11 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
<!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="#">Game</a></h1>
</div>
<nav>
<ul>
<li><button id="stepButtonUp">Up</button></li>
<li><button id="stepButtonDown">Down</button></li>
<li><button id="stepButtonLeft">Left</button></li>
<li><button id="stepButtonRight">Right</button></li>
<li class="last"><button id="playButton">PLAY</button></li>
</ul>
</nav>
</header>
</div>
<!-- content -->
<div class="wrapper row2">
<div id="container">
<!-- main content -->
<div id="homepage">
<section id="program-steps">
</section>
<section id="services">
</section>
<section id="points">
0
</section>
</div>
<!-- / content body -->
</div>
</div>
<script src="scripts/game.js"></script>
</body>
</html>