-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspaceInvader.html
154 lines (145 loc) · 6.17 KB
/
spaceInvader.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpaceInvader</title>
<link rel="stylesheet" href="spaceInvader.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" type="image/png" href="images/android-chrome-192x192.png">
</head>
<body>
<section>
<div class="partOne">
<div>
<ul>
<li><a href="contact.html">Contact
<div class="line"></div>
</a>
</li>
<li><a href="about.html">About
<div class="line"></div>
</a>
</li>
<li><a href="reference.html">Reference
<div class="line"></div>
</a></li>
<li><a href="spaceInvader.html">Space Invader
<div class="line"></div>
</a></li>
<li><a href="breakOut.html">Break Out
<div class="line"></div>
</a></li>
<li><a href="mine.html">MineSeeker
<div class="line"></div>
</a></li>
<li><a class="home" href="index.html">Home
<div class="line"></div>
</a></li>
<img src="images/favlogo.png">
</ul>
</div>
<div class="game">
<h1>Space Invader</h1>
<button class="start">Start/ Restart</button>
<h3>Result: <span class="result"> 0 </span></h3>
<div class="grid">
</div>
</div>
</div>
</section>
<section>
<div class="partTwo">
<div class="ruleBox">
<h1>Game Rules</h1>
<div class="rule">
<ul>
<li><i class="fa-solid fa-circle-dot"></i>
The purpose of the game is to clear the encroaching alien enemies.
</li>
<li><i class="fa-solid fa-circle-dot"></i>
Click 's' to shoot to clear the enemies. Click restart to restart the game.
</li>
<li>
<i class="fa-solid fa-circle-dot"></i>
Arrow keys to move around with the battle craft. Avoid contact with the enemies.
</li>
<li>
<i class="fa-solid fa-circle-dot"></i> If enemies aren't cleared before they reach the bottom of the game plane, you lose!
</li>
<li><i class="fa-solid fa-circle-dot"></i>Have Fun Playing!</li>
</ul>
</div>
</div>
</div>
</section>
<section>
<div class="partFour">
<div class="fourleft">
<h1>Games You would Like to See</h1>
<p>-Mineseeker</p>
<p>-Space Invader</p>
<p>-Break Out</p>
<p>-Waiting For Updates</p>
</div>
<div class="fourright">
<h1>If you have any classic game suggestions, please contact me here! Updates will be made regularly...</h1>
<button class="Contact"><a href="contact.html">Contact Me</a></button>
</div>
</div>
</section>
<hr>
<section>
<div class="partFive">
<h1>Start your Exploration of Childhood Memories</h1>
</div>
</section>
<hr>
<section>
<div class="partSix">
<div class="footer-content">
<div class="footer-section about">
<img src="images/favlogo.png">
<h1>allections</h1>
<p>Welcome to my website!</p>
<div class="contact">
<span><i class="fas fa-phone"></i> unavailable</span>
<span><i class="fas fa-envelope"></i> Gallections@gmail.com</span>
</div>
<div class="socials">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/gallections/"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
<a href="#"><i class="fa-brands fa-weixin"></i></a>
</div>
</div>
<div class="footer-section quickLinks">
<h1>Quick Links</h1>
<br>
<ul>
<a href="mine.html"><li>Mine Seeker</li></a>
<br>
<a href="spaceInvader.html"><li>Space Invader</li></a>
<br>
<a href="breakOut.html"><li>Break Out</li></a>
<br>
<a href="reference.html"><li>Reference</li></a>
<br>
<a href="about.html"><li>About</li></a>
<br>
<a href="contact.html"><li>Contact</li></a>
</ul>
</div>
<div class="footer-section">
<h1></h1>
<p></p>
</div>
</div>
<div class="footer-bottom"></div>
</div>
</section>
<script src="spaceInvader.js"></script>
</body>
</html>