|
<!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"> |
|
|
|
<div id="stars-container" class="fixed inset-0 overflow-hidden -z-10"></div> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<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 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> |
|
|
|
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'); |
|
|
|
|
|
const size = Math.random() * 2 + 1; |
|
star.style.width = `${size}px`; |
|
star.style.height = `${size}px`; |
|
|
|
|
|
star.style.left = `${Math.random() * 100}%`; |
|
star.style.top = `${Math.random() * 100}%`; |
|
|
|
|
|
star.style.animationDuration = `${Math.random() * 3 + 1}s`; |
|
|
|
starsContainer.appendChild(star); |
|
} |
|
|
|
|
|
setInterval(() => { |
|
const rocket = document.querySelector('.rocket-launch'); |
|
rocket.style.animation = 'none'; |
|
void rocket.offsetWidth; |
|
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> |