File size: 25,079 Bytes
8e9c6c4 b3bf101 8e9c6c4 |
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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Space Explorers Academy | Fun Space Learning for Kids</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Orbitron:wght@400;700&display=swap');
body {
font-family: 'Comic Neue', cursive;
background-color: #0a0e2e;
color: white;
}
.title-font {
font-family: 'Orbitron', sans-serif;
}
.planet-card {
transition: all 0.3s ease;
}
.planet-card:hover {
transform: scale(1.05);
}
.astronaut-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.rocket-launch {
animation: launch 8s linear infinite;
}
@keyframes launch {
0% { transform: translateY(0) scale(0.8); opacity: 0; }
20% { transform: translateY(-50px) scale(1); opacity: 1; }
80% { transform: translateY(-500px) scale(1.2); opacity: 1; }
100% { transform: translateY(-600px) scale(1.5); opacity: 0; }
}
.star {
position: absolute;
background-color: white;
border-radius: 50%;
animation: twinkle 2s infinite alternate;
}
@keyframes twinkle {
0% { opacity: 0.2; }
100% { opacity: 1; }
}
</style>
</head>
<body class="min-h-screen">
<!-- Stars Background -->
<div id="stars-container" class="fixed inset-0 overflow-hidden -z-10"></div>
<!-- Header -->
<header class="bg-gradient-to-b from-purple-900 to-blue-900 py-6 px-4 shadow-lg">
<div class="container mx-auto flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-rocket text-3xl text-yellow-400 mr-3"></i>
<h1 class="title-font text-3xl md:text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-yellow-400 to-pink-500">
Space Explorers Academy
</h1>
</div>
<nav class="flex space-x-1 md:space-x-6">
<a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Home</a>
<a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Courses</a>
<a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Games</a>
<a href="#" class="px-3 py-2 rounded-full hover:bg-purple-700 transition font-bold text-sm md:text-base">Videos</a>
<a href="#" class="px-3 py-2 rounded-full bg-yellow-400 text-purple-900 hover:bg-yellow-300 transition font-bold text-sm md:text-base">Sign Up</a>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="py-12 md:py-24 px-4 relative overflow-hidden">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0 relative z-10">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-6 leading-tight">
Blast Off Into <span class="text-yellow-400">Space Learning!</span>
</h2>
<p class="text-lg md:text-xl mb-8 text-blue-100">
Join our cosmic classroom where learning about planets, stars, and rockets is out of this world! Perfect for young astronauts aged 6-12.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-yellow-400 hover:bg-yellow-300 text-purple-900 font-bold py-3 px-6 rounded-full transition transform hover:scale-105 shadow-lg">
Start Learning Now <i class="fas fa-arrow-right ml-2"></i>
</button>
<button class="bg-transparent hover:bg-purple-800 border-2 border-white text-white font-bold py-3 px-6 rounded-full transition transform hover:scale-105">
<i class="fas fa-play mr-2"></i> Watch Demo
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="absolute -bottom-10 -left-10">
<div class="rocket-launch">
<i class="fas fa-rocket text-4xl text-yellow-400"></i>
</div>
</div>
<div class="absolute -top-10 -right-10">
<div class="w-16 h-16 rounded-full bg-purple-800 opacity-30"></div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 px-4 bg-gradient-to-b from-blue-900 to-purple-900">
<div class="container mx-auto">
<h2 class="title-font text-3xl md:text-4xl font-bold text-center mb-16">
Why Kids <span class="text-yellow-400">Love</span> Learning With Us
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600 hover:border-yellow-400 transition">
<div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-gamepad text-2xl text-purple-900"></i>
</div>
<h3 class="title-font text-xl font-bold mb-4 text-center">Interactive Games</h3>
<p class="text-blue-100 text-center">
Play fun space games that teach real astronomy concepts while you explore the cosmos!
</p>
</div>
<a href="https://huggingface.co/spaces/ParulPandey/watchful-sun" target="_blank" class="block bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600 hover:border-yellow-400 transition hover:scale-105">
<div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-video text-2xl text-purple-900"></i>
</div>
<h3 class="title-font text-xl font-bold mb-4 text-center">Animated Videos</h3>
<p class="text-blue-100 text-center">
Watch colorful cartoons that explain space science in ways kids can easily understand.
</p>
</a>
<div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600 hover:border-yellow-400 transition">
<div class="w-16 h-16 bg-yellow-400 rounded-full flex items-center justify-center mb-6 mx-auto">
<i class="fas fa-certificate text-2xl text-purple-900"></i>
</div>
<h3 class="title-font text-xl font-bold mb-4 text-center">Earn Badges</h3>
<p class="text-blue-100 text-center">
Collect cosmic achievement badges as you master new space knowledge!
</p>
</div>
</div>
</div>
</section>
<!-- Planets Section -->
<section class="py-16 px-4 bg-gradient-to-b from-purple-900 to-blue-900">
<div class="container mx-auto">
<h2 class="title-font text-3xl md:text-4xl font-bold text-center mb-6">
Explore Our <span class="text-yellow-400">Planetary</span> Courses
</h2>
<p class="text-xl text-blue-200 text-center mb-12 max-w-3xl mx-auto">
Each planet has its own special lessons and activities designed just for young space explorers!
</p>
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="planet-card bg-blue-800 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-orange-400 to-orange-600 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-fire text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Mercury</h3>
<p class="text-sm text-blue-200">The speedy planet</p>
</div>
<div class="planet-card bg-yellow-600 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-yellow-300 to-yellow-500 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-cloud-sun text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Venus</h3>
<p class="text-sm text-blue-200">Earth's fiery twin</p>
</div>
<div class="planet-card bg-blue-600 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-blue-400 to-blue-600 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-globe-americas text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Earth</h3>
<p class="text-sm text-blue-200">Our home planet</p>
</div>
<div class="planet-card bg-red-600 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-red-400 to-red-600 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-mountain text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Mars</h3>
<p class="text-sm text-blue-200">The red planet</p>
</div>
<div class="planet-card bg-orange-700 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-orange-300 to-orange-500 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-ring text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Jupiter</h3>
<p class="text-sm text-blue-200">King of planets</p>
</div>
<div class="planet-card bg-yellow-700 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-yellow-200 to-yellow-400 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-ring text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Saturn</h3>
<p class="text-sm text-blue-200">Ringed beauty</p>
</div>
<div class="planet-card bg-teal-600 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-teal-300 to-teal-500 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-ice-cream text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Uranus</h3>
<p class="text-sm text-blue-200">The sideways planet</p>
</div>
<div class="planet-card bg-blue-700 bg-opacity-50 p-6 rounded-xl text-center">
<div class="w-24 h-24 bg-gradient-to-b from-blue-300 to-blue-500 rounded-full mx-auto mb-4 flex items-center justify-center">
<i class="fas fa-wind text-3xl text-white"></i>
</div>
<h3 class="title-font font-bold mb-2">Neptune</h3>
<p class="text-sm text-blue-200">The windy planet</p>
</div>
</div>
<div class="text-center mt-12">
<button class="bg-transparent hover:bg-purple-800 border-2 border-white text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105">
See All Space Topics <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 px-4 bg-gradient-to-b from-blue-900 to-purple-900">
<div class="container mx-auto">
<h2 class="title-font text-3xl md:text-4xl font-bold text-center mb-16">
What Our <span class="text-yellow-400">Young Astronauts</span> Say
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-6xl mx-auto">
<div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600">
<div class="flex items-start mb-6">
<img src="https://images.unsplash.com/photo-1553531384-411bb247748d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80"
alt="Happy kid"
class="w-16 h-16 rounded-full border-2 border-yellow-400 object-cover">
<div class="ml-4">
<h4 class="title-font font-bold">Jamie, 8 years old</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-blue-100 italic">
"I love the rocket building game! Now I know all the parts of a real rocket. Mom says I talk about space at dinner every night!"
</p>
</div>
<div class="bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600">
<div class="flex items-start mb-6">
<img src="https://images.unsplash.com/photo-1596495577886-d920f1fb7238?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=200&q=80"
alt="Happy kid"
class="w-16 h-16 rounded-full border-2 border-yellow-400 object-cover">
<div class="ml-4">
<h4 class="title-font font-bold">Sophia, 10 years old</h4>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
<p class="text-blue-100 italic">
"The planet songs help me remember facts for school. I got an A+ on my science test and my teacher was so impressed!"
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 bg-gradient-to-b from-purple-900 to-blue-900 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full opacity-10">
<div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-purple-500"></div>
<div class="absolute top-1/3 right-1/4 w-40 h-40 rounded-full bg-blue-500"></div>
<div class="absolute bottom-1/4 right-1/3 w-24 h-24 rounded-full bg-yellow-400"></div>
</div>
<div class="container mx-auto text-center relative z-10">
<h2 class="title-font text-3xl md:text-5xl font-bold mb-6">
Ready for <span class="text-yellow-400">Liftoff?</span>
</h2>
<p class="text-xl text-blue-200 mb-10 max-w-2xl mx-auto">
Join thousands of young space explorers on an educational journey through the cosmos!
</p>
<div class="max-w-md mx-auto bg-purple-800 bg-opacity-50 p-8 rounded-2xl border border-purple-600">
<h3 class="title-font text-2xl font-bold mb-6">Start Learning for Free</h3>
<div class="mb-4">
<input type="text" placeholder="Parent's Name" class="w-full px-4 py-3 rounded-lg bg-purple-900 border border-purple-700 focus:outline-none focus:ring-2 focus:ring-yellow-400">
</div>
<div class="mb-4">
<input type="email" placeholder="Email Address" class="w-full px-4 py-3 rounded-lg bg-purple-900 border border-purple-700 focus:outline-none focus:ring-2 focus:ring-yellow-400">
</div>
<div class="mb-6">
<input type="text" placeholder="Child's Name & Age" class="w-full px-4 py-3 rounded-lg bg-purple-900 border border-purple-700 focus:outline-none focus:ring-2 focus:ring-yellow-400">
</div>
<button class="w-full bg-yellow-400 hover:bg-yellow-300 text-purple-900 font-bold py-3 px-6 rounded-full transition transform hover:scale-105 shadow-lg">
Create Free Account <i class="fas fa-rocket ml-2"></i>
</button>
<p class="text-sm text-blue-200 mt-4">
No credit card needed. 100% safe for kids.
</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-blue-900 py-12 px-4">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-rocket text-2xl text-yellow-400 mr-3"></i>
<h3 class="title-font text-xl font-bold">Space Explorers Academy</h3>
</div>
<p class="text-blue-200 mb-4">
Making space education fun and accessible for the next generation of astronauts and scientists.
</p>
<div class="flex space-x-4">
<a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-youtube"></i></a>
<a href="#" class="text-blue-200 hover:text-yellow-400 transition"><i class="fab fa-tiktok"></i></a>
</div>
</div>
<div>
<h4 class="title-font font-bold text-lg mb-4">Explore</h4>
<ul class="space-y-2">
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Planets</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Stars</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Galaxies</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Space Travel</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Astronauts</a></li>
</ul>
</div>
<div>
<h4 class="title-font font-bold text-lg mb-4">Parents</h4>
<ul class="space-y-2">
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Safety</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Pricing</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">FAQ</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Curriculum</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Contact Us</a></li>
</ul>
</div>
<div>
<h4 class="title-font font-bold text-lg mb-4">Teachers</h4>
<ul class="space-y-2">
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Classroom Plans</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Lesson Plans</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">School Discounts</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Standards Alignment</a></li>
<li><a href="#" class="text-blue-200 hover:text-yellow-400 transition">Teacher Resources</a></li>
</ul>
</div>
</div>
<div class="border-t border-blue-800 mt-12 pt-8 text-center text-blue-300 text-sm">
<p>© 2023 Space Explorers Academy. All rights reserved. | <a href="#" class="hover:text-yellow-400 transition">Privacy Policy</a> | <a href="#" class="hover:text-yellow-400 transition">Terms of Service</a></p>
<p class="mt-2">Made with <i class="fas fa-heart text-red-400"></i> for future astronauts everywhere</p>
</div>
</div>
</footer>
<script>
// Create twinkling stars
document.addEventListener('DOMContentLoaded', function() {
const starsContainer = document.getElementById('stars-container');
const starsCount = 100;
for (let i = 0; i < starsCount; i++) {
const star = document.createElement('div');
star.classList.add('star');
// Random size between 1-3px
const size = Math.random() * 2 + 1;
star.style.width = `${size}px`;
star.style.height = `${size}px`;
// Random position
star.style.left = `${Math.random() * 100}%`;
star.style.top = `${Math.random() * 100}%`;
// Random animation duration
star.style.animationDuration = `${Math.random() * 3 + 1}s`;
starsContainer.appendChild(star);
}
// Rocket launch animation reset
setInterval(() => {
const rocket = document.querySelector('.rocket-launch');
rocket.style.animation = 'none';
void rocket.offsetWidth; // Trigger reflow
rocket.style.animation = 'launch 8s linear infinite';
}, 8000);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ParulPandey/space-explorers-academy" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |