-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (91 loc) · 2.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<link rel="icon" type="image/x-icon" href="Image/favicon.ico">
<link type="text/css" rel="stylesheet" href="style/Normalize.css" />
<link rel="stylesheet" href="style/style.css" />
<script src="Script/jquery-latest.js"></script>
<script src="Script/script.js"></script>
<title>Rocket Men</title>
</head>
<body>
<h1>Rocket Men</h1>
<img src="Image/logohead.png" alt="logo"><hr>
<!-- Updated -->
<div class="game" style="margin-left: 30px">
<!-- Gameplay area. -->
<div id="frame">
<div id="title">Get to the Next Level</div>
<div id="inner">
<div id="other">
<div id="box"></div>
</div>
<div class="good"></div>
<div class="bad"></div>
<div class="ugly"></div>
<div class="ugliest"></div>
</div>
</div>
<div id="left">
<!-- Clock and scoreboard. -->
<div id="clock">
<div id="top">
<div id="mins">TIME COUNTER</div>
<div id="secs"></div>
</div>
<div id="bottom"><br>00</div>
</div>
<div id="score"> Score<br>0</div>
<div id="button">
<!-- Game status. -->
<div class="center">
<div id="boxLeft">Men Left <br>0</div>
<div id="level">Level <br>0</div>
<div id="lives">Shields <br>0</div>
</div>
<!-- Game options. -->
<div id="easy">
<p>Easy</p>
</div>
<div id="hard">
<p>Hard</p>
</div>
<div id="extreme">
<p>Extreme</p>
</div>
<div id="start"><br>
<p>Play</p>
</div>
<div id="stop"><br>
<p>Stop</p>
</div>
</div>
</div>
<br><hr>
<div style="
display: block;
position: relative;
text-align: left;
margin-left: 30px;
">
<h3>Instructions</h3>
<p>To Play Rocket Men:</p>
<ol>
<li>Click the <strong>Play</strong> button. </li>
<li><strong>Hover</strong> mouse over gamebox to move spacecraft. </li>
<li><strong>Avoid</strong> astroids and red mushrooms.
<ul>
<li>- Astroid damage shield d.</li>
<li>- Bad mushrooms do double damage. </li>
</ul>
</li>
<li>Collect <strong>space men</strong> in rocket to move to next level."</li>
<ul>
<li>Space men decrease the items left to move to next level.</li>
</ul>
</ol>
</div>
</div>
</body>
</html>