-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.htm
executable file
·34 lines (33 loc) · 1.26 KB
/
Default.htm
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Red Rage - by Lior Saadon</title>
<meta name="description" content="Small game to demonstrate javascript skills" />
<meta name="keywords" content="RedRage,jquery game,HTML,CSS,JavaScript,jQuery" />
<meta name="author" content="Lior Saadon" />
<link href="Style/RedRage.css" rel="stylesheet" type="text/css" />
<script src="Scripts/jquery-1.6.2.min.js" type="text/javascript"></script>
<script src="Scripts/RedRage.js" type="text/javascript"></script>
</head>
<body>
<div class="Board">
<div class="RedShip"></div>
<div class="Missile"></div>
<div class="Enemy1"></div>
<div class="Explode"></div>
</div>
<div class="Credits">
<span>RedRage - by Lior Saadon</span>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div>
Mouse Position: <span id="MouseXY"></span>
</div>
<div>
RedRage Position: <span id="RedShipXY"></span>
</div>
<div>
Missile Y Position: <span id="MissileY"></span>
</div>
</body>
</html>