-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="jquery.js" type="text/javascript"></script>
<script src="index.js" type="text/javascript"></script>
<link rel="stylesheet" href="index.css" type="text/css">
<title>Maze!</title>
</head>
<body>
<div class="positioner">
<h1>The Amazing Mouse Maze</h1>
<h3>Move your mouse over the "S" to begin.</h3>
<p id="display">Here will display some information during your game.</p>
<div class="container">
<div id="start"><p>S</p></div>
<div id="end"><p>E</p></div>
</div>
<div class="footer">
<p>The object of this game is to guide the mouse cursor through the start area and get to the end
area.</p>
<p>Be sure to avoid the walls:</p>
<p>Good luck!</p>
<div class="horizontal block" id="sample"></div>
</div>
</div>
</body>
</html>