-
Notifications
You must be signed in to change notification settings - Fork 202
/
about.html
235 lines (211 loc) · 9.35 KB
/
about.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Alien Invasion Defense</title>
<style>
/* Base styles */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #0a0a2a;
color: #ffffff;
}
/* Container styles */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Header styles */
header {
background-color: #1a1a4a;
padding: 20px;
position: relative;
box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
}
.main-heading {
text-align: center;
margin: 0;
font-size: 2.5em;
color: #00ffff;
text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
/* Back to Home button styles */
.home-button {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
background: linear-gradient(45deg, #00ccff, #0066ff);
border: none;
border-radius: 25px;
padding: 10px 20px;
color: white;
font-weight: bold;
cursor: pointer;
text-decoration: none;
display: flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.home-button:hover {
transform: translateY(-50%) scale(1.05);
box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.home-button:before {
content: '🏠';
font-size: 1.2em;
}
/* Section styles */
section {
background-color: rgba(26, 26, 74, 0.6);
margin: 20px 0;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}
/* Headings */
h2 {
color: #00ffff;
border-bottom: 2px solid #00ffff;
padding-bottom: 10px;
margin-top: 0;
}
/* Lists */
ul {
list-style-type: none;
padding-left: 0;
}
li {
margin: 10px 0;
padding-left: 25px;
position: relative;
}
/* Highlight text */
.highlight {
color: #00ffff;
font-weight: bold;
}
/* Responsive design */
@media (max-width: 768px) {
.main-heading {
font-size: 1.8em;
}
.home-button {
padding: 8px 16px;
font-size: 0.9em;
}
}
</style>
</head>
<body>
<!-- Main Heading: About Us -->
<header>
<a href="index.html" class="home-button">Back to Home</a>
<h1 class="main-heading">🚀 Alien Invasion Defense 🛸</h1>
</header>
<div class="container">
<!-- Introduction Section -->
<section class="intro">
<h2>Welcome to <span class="highlight">Alien Invasion Defense</span> 👾</h2>
<p>
<span class="highlight">Alien Invasion Defense</span> is an exciting space-shooter game that challenges you to defend your base from waves of alien invaders. With sleek graphics, easy controls, and thrilling gameplay, you'll be immersed in an intergalactic battle for survival. Are you ready to become the ultimate space defender?
</p>
</section>
<!-- Features Section -->
<section class="features">
<h2>🌟 Features</h2>
<ul>
<li>✨ <strong>Exciting Alien Invasion Gameplay:</strong> Fight off waves of alien ships that threaten your base.</li>
<li>🎮 <strong>Easy Controls & Interface:</strong> Simple controls make gameplay intuitive and accessible for all players.</li>
<li>💥 <strong>Three Lives:</strong> Protect your base with only 3 chances before the game ends.</li>
<li>🚀 <strong>Smooth Shooting:</strong> Responsive shooting mechanics to destroy incoming alien invaders.</li>
<li>🖥️ <strong>Modern Graphics:</strong> A visually pleasing, clean interface that complements the game's exciting pace.</li>
<li>🔄 <strong>Quick Restart:</strong> Restart the game instantly with one click.</li>
<li>🏆 <strong>Leaderboard (Optional):</strong> Track your highest scores and challenge your friends to beat them.</li>
</ul>
</section>
<!-- Gameplay Section -->
<section class="gameplay">
<h2>🎮 How to Play</h2>
<ul>
<li><strong>Start the Game:</strong> Click the "Start" button to begin your defense mission.</li>
<li><strong>Move and Shoot:</strong> Use the <span class="highlight">Arrow Keys</span> or on-screen controls to move your spaceship and shoot alien ships.</li>
<li><strong>Lives:</strong> You have 3 lives. You lose a life if an alien reaches your base or if your spaceship is hit.</li>
<li><strong>Game Over:</strong> The game ends when you lose all 3 lives. Click "Restart" to try again!</li>
<li><strong>Progress:</strong> Destroy all alien ships in each wave to advance to the next level and increase your score.</li>
</ul>
</section>
<!-- Game Rules Section -->
<section class="game-rules">
<h2>📜 Game Rules</h2>
<ul>
<li><strong>Survive as Long as Possible:</strong> Protect your base by shooting alien ships and avoiding their attacks.</li>
<li><strong>Three Lives Only:</strong> If you lose all your lives (by aliens reaching your base or hitting your ship), the game ends.</li>
<li><strong>Restart Anytime:</strong> Use the "Restart" button to start over and try to achieve a higher score.</li>
<li><strong>Earn Points:</strong> Destroy alien ships to accumulate points and aim for the highest score possible.</li>
</ul>
</section>
<!-- Tech Stack Section -->
<section class="tech-stack">
<h2>Tech Stack ⚙️</h2>
<p>Alien Invasion Defense is powered by modern web technologies to ensure a smooth and engaging experience for players. Here's the tech stack behind the game:</p>
<ul>
<li><strong>HTML5</strong> - Structure and game layout.</li>
<li><strong>CSS3</strong> - For styling and responsive design.</li>
<li><strong>JavaScript</strong> - For dynamic game logic and interactivity.</li>
<li><strong>Canvas API</strong> - For rendering smooth game animations.</li>
</ul>
</section>
<!-- Contributors Section -->
<section class="contributors">
<h2>❤️ Our Valuable Contributors</h2>
<div class="contributors-content" align="center">
<a href="https://github.com/YadavAkhileshh/Alien-Invasion-Defense/graphs/contributors">
<img src="https://contrib.rocks/image?repo=YadavAkhileshh/Alien-Invasion-Defense" alt="Contributors">
</a>
<p>We are grateful to everyone who contributed to this project!</p>
</div>
</section>
<!-- Support Section -->
<section class="support">
<h2>🤝 Support the Project</h2>
<p>If you find this project helpful, please consider giving it a star on GitHub! Your support helps us grow and improve the game.</p>
<hr>
<!-- Stargazers Section -->
<section class="stargazers">
<h2>⭐️ Stargazers</h2>
<div align="center">
<a href="https://github.com/YadavAkhileshh/Alien-Invasion-Defense/stargazers">
<img src="https://reporoster.com/stars/YadavAkhileshh/Alien-Invasion-Defense" alt="Stargazers Repo Roster">
</a>
<p>Thank you to all the amazing people who have starred our project!</p>
</div>
<hr>
<h2>🍴 Forkers</h2>
<div align="center">
<a href="https://github.com/YadavAkhileshh/Alien-Invasion-Defense/network/members">
<img src="https://reporoster.com/forks/YadavAkhileshh/Alien-Invasion-Defense" alt="Forkers Repo Roster">
</a>
<p>Special thanks to everyone who has forked this repository!</p>
</div>
</section>
</section>
<!-- Call to Action -->
<section class="call-to-action">
<p align="center">Keep learning 📚, exploring 🌍, and contributing 🤝 to make a difference in the world!</p>
<p align="center">Made with ❤️ for all space defenders!</p>
<div align="center">
<a href="#top">
<img src="https://img.shields.io/badge/Back%20to%20Top-000000?style=for-the-badge&logo=github&logoColor=white" alt="Back to Top">
</a>
</div>
</section>
</div>
</body>
</html>