File size: 26,079 Bytes
58b34f5 | 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 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Space English - Learn English in Cosmic Style</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>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.gradient-bg {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
}
.planet {
background: radial-gradient(circle at 30% 30%, #4f46e5, #1e40af);
box-shadow: 0 0 60px rgba(79, 70, 229, 0.5);
}
.astronaut-helmet {
background: radial-gradient(circle at 40% 40%, #e0e7ff, #c7d2fe);
}
.meteor {
position: absolute;
width: 4px;
height: 4px;
background: white;
border-radius: 50%;
box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
}
.word-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.word-card:hover {
transform: translateY(-10px) rotateX(10deg);
box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.5);
}
.typewriter {
overflow: hidden;
border-right: 3px solid #818cf8;
white-space: nowrap;
letter-spacing: 2px;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #818cf8 }
}
</style>
</head>
<body class="gradient-bg min-h-screen text-white font-sans overflow-x-hidden">
<!-- Stars background -->
<div id="stars-container" class="fixed inset-0 overflow-hidden z-0"></div>
<!-- Header -->
<header class="relative z-10">
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="planet w-12 h-12 rounded-full relative overflow-hidden">
<div class="absolute inset-0 rounded-full opacity-30" style="background: conic-gradient(from 0deg, transparent 0deg 90deg, white 90deg 180deg, transparent 180deg 270deg, white 270deg 360deg);"></div>
</div>
<span class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">SpaceEnglish</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#courses" class="hover:text-blue-300 transition">Courses</a>
<a href="#features" class="hover:text-blue-300 transition">Features</a>
<a href="#practice" class="hover:text-blue-300 transition">Practice</a>
<a href="#testimonials" class="hover:text-blue-300 transition">Testimonials</a>
</div>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</nav>
</header>
<!-- Hero Section -->
<section class="relative z-10 container mx-auto px-6 py-20 md:py-32 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
<span class="typewriter">Launch Your English</span><br>
<span class="text-blue-400">To The Stars</span>
</h1>
<p class="text-lg md:text-xl text-gray-300 mb-8">
Explore the universe of English language with our interactive space-themed courses.
Designed for cosmic explorers who want to communicate across galaxies.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-full font-medium transition transform hover:scale-105">
Start Free Trial
</button>
<button class="border border-blue-400 text-blue-400 hover:bg-blue-900 hover:bg-opacity-30 px-8 py-3 rounded-full font-medium transition transform hover:scale-105">
Take a Tour
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center relative">
<div class="planet w-64 h-64 rounded-full relative floating">
<div class="absolute top-1/4 left-1/4 w-8 h-8 rounded-full bg-blue-800"></div>
<div class="absolute bottom-1/4 right-1/4 w-12 h-12 rounded-full bg-blue-900"></div>
<div class="absolute top-1/3 right-1/5 w-6 h-6 rounded-full bg-indigo-900"></div>
</div>
<div class="astronaut-helmet w-40 h-40 rounded-full absolute -bottom-10 -right-10 md:-right-20 flex items-center justify-center">
<div class="w-32 h-32 rounded-full relative overflow-hidden">
<div class="absolute inset-0 bg-black opacity-30"></div>
<div class="absolute top-1/3 left-1/4 w-16 h-1 bg-white rounded-full"></div>
<div class="absolute top-2/3 left-1/4 w-16 h-1 bg-white rounded-full"></div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="relative z-10 py-20 bg-black bg-opacity-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
<span class="border-b-4 border-blue-500 pb-2">Cosmic Learning Features</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-12">
<div class="bg-gray-900 bg-opacity-50 p-8 rounded-xl border border-gray-800 hover:border-blue-500 transition">
<div class="w-16 h-16 bg-blue-900 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-satellite-dish text-2xl text-blue-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Interactive Lessons</h3>
<p class="text-gray-300">
Engage with holographic tutors and AI-powered language exercises that adapt to your cosmic learning speed.
</p>
</div>
<div class="bg-gray-900 bg-opacity-50 p-8 rounded-xl border border-gray-800 hover:border-blue-500 transition">
<div class="w-16 h-16 bg-blue-900 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-rocket text-2xl text-blue-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Accelerated Learning</h3>
<p class="text-gray-300">
Our spaced repetition system ensures you retain vocabulary like a memory implant from the future.
</p>
</div>
<div class="bg-gray-900 bg-opacity-50 p-8 rounded-xl border border-gray-800 hover:border-blue-500 transition">
<div class="w-16 h-16 bg-blue-900 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-user-astronaut text-2xl text-blue-400"></i>
</div>
<h3 class="text-xl font-bold mb-3">Alien Conversations</h3>
<p class="text-gray-300">
Practice with our extraterrestrial AI that simulates real conversations you might have across the galaxy.
</p>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section id="courses" class="relative z-10 py-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
<span class="border-b-4 border-blue-500 pb-2">Mission Courses</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Course 1 -->
<div class="word-card bg-gray-900 rounded-xl overflow-hidden border border-gray-800">
<div class="h-48 bg-gradient-to-br from-purple-900 to-blue-800 flex items-center justify-center">
<i class="fas fa-meteor text-6xl text-white opacity-30"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold">Basic Communication</h3>
<span class="bg-blue-900 text-blue-300 text-xs px-3 py-1 rounded-full">Beginner</span>
</div>
<p class="text-gray-400 mb-4">
Learn essential phrases to navigate space stations and communicate with fellow astronauts.
</p>
<div class="flex justify-between items-center">
<div class="flex space-x-2 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-half-alt"></i>
</div>
<button class="text-blue-400 hover:text-blue-300 font-medium">Start Mission</button>
</div>
</div>
</div>
<!-- Course 2 -->
<div class="word-card bg-gray-900 rounded-xl overflow-hidden border border-gray-800">
<div class="h-48 bg-gradient-to-br from-blue-900 to-indigo-800 flex items-center justify-center">
<i class="fas fa-space-shuttle text-6xl text-white opacity-30"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold">Technical English</h3>
<span class="bg-purple-900 text-purple-300 text-xs px-3 py-1 rounded-full">Intermediate</span>
</div>
<p class="text-gray-400 mb-4">
Master the technical vocabulary needed for spacecraft operations and maintenance.
</p>
<div class="flex justify-between items-center">
<div class="flex space-x-2 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="far fa-star"></i>
</div>
<button class="text-blue-400 hover:text-blue-300 font-medium">Start Mission</button>
</div>
</div>
</div>
<!-- Course 3 -->
<div class="word-card bg-gray-900 rounded-xl overflow-hidden border border-gray-800">
<div class="h-48 bg-gradient-to-br from-indigo-900 to-purple-800 flex items-center justify-center">
<i class="fas fa-globe-europe text-6xl text-white opacity-30"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-4">
<h3 class="text-xl font-bold">First Contact Protocol</h3>
<span class="bg-pink-900 text-pink-300 text-xs px-3 py-1 rounded-full">Advanced</span>
</div>
<p class="text-gray-400 mb-4">
Prepare for diplomatic encounters with extraterrestrial civilizations and alien cultures.
</p>
<div class="flex justify-between items-center">
<div class="flex space-x-2 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>
<button class="text-blue-400 hover:text-blue-300 font-medium">Start Mission</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Word of the Day -->
<section id="practice" class="relative z-10 py-20 bg-black bg-opacity-30">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto bg-gray-900 rounded-xl overflow-hidden border border-gray-800">
<div class="md:flex">
<div class="md:w-1/3 bg-gradient-to-b from-blue-900 to-blue-800 flex items-center justify-center p-8">
<div class="text-center">
<div class="text-5xl font-bold mb-2">Word</div>
<div class="text-3xl font-light">of the</div>
<div class="text-5xl font-bold mt-2">Day</div>
</div>
</div>
<div class="md:w-2/3 p-8">
<div class="flex justify-between items-start mb-6">
<h3 class="text-2xl font-bold">Orbit</h3>
<button id="speak-btn" class="w-10 h-10 rounded-full bg-blue-900 flex items-center justify-center hover:bg-blue-800 transition">
<i class="fas fa-volume-up"></i>
</button>
</div>
<div class="mb-6">
<div class="text-blue-400 font-medium mb-2">/ˈɔːrbɪt/</div>
<p class="text-gray-300 mb-4">
The curved path of a celestial object or spacecraft around a star, planet, or moon.
</p>
<div class="bg-gray-800 rounded-lg p-4">
<p class="italic text-gray-400">
"The International Space Station completes an orbit around Earth approximately every 90 minutes."
</p>
</div>
</div>
<div class="flex space-x-4">
<button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-lg transition">Save to Flashcards</button>
<button class="border border-blue-400 text-blue-400 hover:bg-blue-900 px-4 py-2 rounded-lg transition">Practice Sentence</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section id="testimonials" class="relative z-10 py-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-16">
<span class="border-b-4 border-blue-500 pb-2">Astronaut Testimonials</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-900 bg-opacity-50 p-8 rounded-xl border border-gray-800">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full bg-blue-900 flex items-center justify-center mr-4">
<i class="fas fa-user-astronaut text-2xl"></i>
</div>
<div>
<h4 class="font-bold">Commander Sarah J.</h4>
<p class="text-sm text-gray-400">ISS Expedition 58</p>
</div>
</div>
<p class="text-gray-300 italic">
"SpaceEnglish helped me prepare for international crew communications. The space-themed vocabulary was incredibly relevant to my work aboard the ISS."
</p>
</div>
<div class="bg-gray-900 bg-opacity-50 p-8 rounded-xl border border-gray-800">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full bg-blue-900 flex items-center justify-center mr-4">
<i class="fas fa-user-astronaut text-2xl"></i>
</div>
<div>
<h4 class="font-bold">Dr. Alex R.</h4>
<p class="text-sm text-gray-400">Mars Mission Candidate</p>
</div>
</div>
<p class="text-gray-300 italic">
"The technical English course was exactly what I needed to understand spacecraft documentation. The interactive simulations are out of this world!"
</p>
</div>
<div class="bg-gray-900 bg-opacity-50 p-8 rounded-xl border border-gray-800">
<div class="flex items-center mb-6">
<div class="w-16 h-16 rounded-full bg-blue-900 flex items-center justify-center mr-4">
<i class="fas fa-user-astronaut text-2xl"></i>
</div>
<div>
<h4 class="font-bold">Engineer Mark T.</h4>
<p class="text-sm text-gray-400">SpaceX Mission Control</p>
</div>
</div>
<p class="text-gray-300 italic">
"As a non-native English speaker, SpaceEnglish's accelerated learning system helped me reach professional fluency faster than I thought possible."
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="relative z-10 py-20 bg-gradient-to-r from-blue-900 to-purple-900">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready for Liftoff?</h2>
<p class="text-xl text-blue-200 max-w-2xl mx-auto mb-8">
Join thousands of space enthusiasts and professionals mastering English for interplanetary communication.
</p>
<button class="bg-white text-blue-900 hover:bg-gray-200 px-8 py-4 rounded-full font-bold text-lg transition transform hover:scale-105">
Start Your Free 7-Day Mission
</button>
</div>
</section>
<!-- Footer -->
<footer class="relative z-10 bg-black bg-opacity-50 py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="planet w-8 h-8 rounded-full"></div>
<span class="text-xl font-bold">SpaceEnglish</span>
</div>
<p class="text-gray-400">
Teaching English for the final frontier since 2023.
</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Courses</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Beginner</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Intermediate</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Advanced</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Specialized</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Vocabulary</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Grammar</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pronunciation</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>© 2023 SpaceEnglish. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Create stars background
function createStars() {
const container = document.getElementById('stars-container');
const starsCount = 200;
for (let i = 0; i < starsCount; i++) {
const star = document.createElement('div');
star.className = 'meteor';
// Random position
const x = Math.random() * 100;
const y = Math.random() * 100;
// Random size
const size = Math.random() * 3;
// Random opacity
const opacity = Math.random();
// Random animation
const duration = 5 + Math.random() * 10;
const delay = Math.random() * 5;
star.style.left = `${x}%`;
star.style.top = `${y}%`;
star.style.width = `${size}px`;
star.style.height = `${size}px`;
star.style.opacity = opacity;
star.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`;
container.appendChild(star);
}
}
// Text to speech for word of the day
function speakWord() {
const speech = new SpeechSynthesisUtterance();
speech.text = "Orbit. The curved path of a celestial object or spacecraft around a star, planet, or moon.";
speech.rate = 0.9;
window.speechSynthesis.speak(speech);
}
// Initialize
document.addEventListener('DOMContentLoaded', function() {
createStars();
// Word of the day speak button
document.getElementById('speak-btn').addEventListener('click', speakWord);
// Mobile menu toggle (would need more implementation)
const menuBtn = document.querySelector('header button');
menuBtn.addEventListener('click', function() {
// This would toggle a mobile menu in a real implementation
console.log('Mobile menu clicked');
});
// Typewriter effect
const typewriter = document.querySelector('.typewriter');
setTimeout(() => {
typewriter.style.animation = 'none';
setTimeout(() => {
typewriter.style.animation = 'typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite';
}, 10);
}, 3500);
});
</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=matvee/space-eng" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |