-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaze.html
35 lines (34 loc) · 1019 Bytes
/
maze.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="maze.css">
<script src="maze.js" type="text/javascript"></script>
<title>Amazing Maze</title>
</head>
<body>
<h1 id="_title">The Amazing Mouse Maze!</h1>
<div id="direction">Move your mouse over the 'S' to begin.</div>
<div id="warning" class="warn"></div>
<div id="container">
<div id="road_1">
<div id="start">S</div>
</div>
<div id="road_2"></div>
<div id="road_3"></div>
<div id="road_4"></div>
<div id="road_5">
<div id="end">E</div>
</div>
<div id="wall_1" class="wall"></div>
<div id="wall_2" class="wall"></div>
<div id="wall_3" class="wall"></div>
<div id="wall_4" class="wall"></div>
<div id="wall_5" class="wall"></div>
</div>
<div id="explain">The object of this game is to guide the mouse cursor through the
star area and get to the end area. Be sure to avoid the walls:</div>
<div id="wall"></div>
<div id="bless">Good luck!</div>
</body>
</html>