techeduhub-com / index.html
Bhevin's picture
undefined - Initial Deployment
9358e40 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechEduHub - Learn Tech Skills Online</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>
.hero-gradient {
background: linear-gradient(135deg, #6e8efb, #a777e3);
}
.course-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.nav-link:hover {
color: #6e8efb;
}
.mobile-menu {
transition: all 0.3s ease;
}
</style>
</head>
<body class="font-sans antialiased">
<!-- Header/Navigation -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<a href="#" class="flex items-center">
<i class="fas fa-laptop-code text-3xl text-indigo-600 mr-2"></i>
<span class="text-2xl font-bold text-gray-800">TechEduHub</span>
</a>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Home</a>
<a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Courses</a>
<a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">About</a>
<a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Pricing</a>
<a href="#" class="nav-link text-gray-700 hover:text-indigo-600 font-medium">Contact</a>
</nav>
<div class="hidden md:flex items-center space-x-4">
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Login</a>
<a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md hover:bg-indigo-700 transition">Sign Up</a>
</div>
<button id="mobile-menu-button" class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="mobile-menu hidden md:hidden bg-white w-full px-4 py-2 shadow-lg">
<a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Home</a>
<a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Courses</a>
<a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">About</a>
<a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Pricing</a>
<a href="#" class="block py-2 text-gray-700 hover:text-indigo-600">Contact</a>
<div class="flex space-x-4 mt-3">
<a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Login</a>
<a href="#" class="bg-indigo-600 text-white px-4 py-2 rounded-md hover:bg-indigo-700 transition">Sign Up</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient text-white py-20">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Learn Tech Skills for the Digital Age</h1>
<p class="text-xl mb-8 opacity-90">Join thousands of students learning in-demand tech skills with our expert-led courses. Start your journey today!</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-indigo-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 text-center">Browse Courses</a>
<a href="#" class="border border-white px-6 py-3 rounded-md font-medium hover:bg-white hover:text-indigo-600 text-center">Watch Demo</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Learning illustration" class="rounded-lg shadow-xl max-w-full h-auto">
</div>
</div>
</section>
<!-- Stats Section -->
<section class="bg-gray-50 py-16">
<div class="container mx-auto px-4">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-4">
<div class="text-4xl font-bold text-indigo-600 mb-2">10K+</div>
<div class="text-gray-600">Students Enrolled</div>
</div>
<div class="p-4">
<div class="text-4xl font-bold text-indigo-600 mb-2">50+</div>
<div class="text-gray-600">Expert Instructors</div>
</div>
<div class="p-4">
<div class="text-4xl font-bold text-indigo-600 mb-2">200+</div>
<div class="text-gray-600">Courses Available</div>
</div>
<div class="p-4">
<div class="text-4xl font-bold text-indigo-600 mb-2">95%</div>
<div class="text-gray-600">Satisfaction Rate</div>
</div>
</div>
</div>
</section>
<!-- Popular Courses -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Popular Courses</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Choose from our most popular courses to kickstart your tech career</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Course 1 -->
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
<img src="https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Web Development" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="bg-indigo-100 text-indigo-600 text-xs px-3 py-1 rounded-full">Beginner</span>
<span class="text-gray-500">4.9 <i class="fas fa-star text-yellow-400"></i></span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Complete Web Development Bootcamp</h3>
<p class="text-gray-600 mb-4">Learn HTML, CSS, JavaScript, React and more to build modern web applications.</p>
<div class="flex justify-between items-center">
<span class="text-indigo-600 font-bold">$99.99</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Enroll Now</a>
</div>
</div>
</div>
<!-- Course 2 -->
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Data Science" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="bg-green-100 text-green-600 text-xs px-3 py-1 rounded-full">Intermediate</span>
<span class="text-gray-500">4.8 <i class="fas fa-star text-yellow-400"></i></span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Data Science & Machine Learning</h3>
<p class="text-gray-600 mb-4">Master Python, Pandas, NumPy, Scikit-learn and TensorFlow for data analysis.</p>
<div class="flex justify-between items-center">
<span class="text-indigo-600 font-bold">$129.99</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Enroll Now</a>
</div>
</div>
</div>
<!-- Course 3 -->
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300">
<img src="https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Mobile Development" class="w-full h-48 object-cover">
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="bg-purple-100 text-purple-600 text-xs px-3 py-1 rounded-full">Advanced</span>
<span class="text-gray-500">4.7 <i class="fas fa-star text-yellow-400"></i></span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Flutter Mobile App Development</h3>
<p class="text-gray-600 mb-4">Build cross-platform mobile apps with Flutter and Dart for iOS and Android.</p>
<div class="flex justify-between items-center">
<span class="text-indigo-600 font-bold">$89.99</span>
<a href="#" class="text-indigo-600 hover:text-indigo-800 font-medium">Enroll Now</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-block bg-indigo-600 text-white px-6 py-3 rounded-md font-medium hover:bg-indigo-700">View All Courses</a>
</div>
</div>
</section>
<!-- Features Section -->
<section class="bg-gray-50 py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Why Choose TechEduHub?</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We provide the best learning experience for our students</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-lg shadow-sm text-center">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-chalkboard-teacher text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Expert Instructors</h3>
<p class="text-gray-600">Learn from industry professionals with years of practical experience in their fields.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm text-center">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-laptop-code text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Hands-on Projects</h3>
<p class="text-gray-600">Apply what you learn with real-world projects to build your portfolio.</p>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm text-center">
<div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-certificate text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Certification</h3>
<p class="text-gray-600">Earn certificates to showcase your skills to employers and boost your career.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Students Say</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Hear from our successful students who transformed their careers</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="testimonial-card bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Sarah Johnson</h4>
<p class="text-gray-500 text-sm">Web Developer</p>
</div>
</div>
<p class="text-gray-600 mb-4">"The web development course completely changed my career. I went from knowing nothing to landing my first developer job in 6 months!"</p>
<div class="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>
<!-- Testimonial 2 -->
<div class="testimonial-card bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Michael Chen</h4>
<p class="text-gray-500 text-sm">Data Scientist</p>
</div>
</div>
<p class="text-gray-600 mb-4">"The depth of the data science curriculum is impressive. The projects helped me build a strong portfolio that got me multiple job offers."</p>
<div class="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>
<!-- Testimonial 3 -->
<div class="testimonial-card bg-white p-6 rounded-lg shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Emma Rodriguez</h4>
<p class="text-gray-500 text-sm">Mobile Developer</p>
</div>
</div>
<p class="text-gray-600 mb-4">"I never thought I could build mobile apps until I took the Flutter course. The instructors break down complex concepts into easy-to-understand lessons."</p>
<div class="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>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="bg-indigo-600 text-white py-20">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Career?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join thousands of students who have already started their journey with TechEduHub.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-white text-indigo-600 px-8 py-3 rounded-md font-bold hover:bg-gray-100">Get Started Now</a>
<a href="#" class="border border-white px-8 py-3 rounded-md font-bold hover:bg-white hover:text-indigo-600">Talk to Advisor</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<a href="#" class="flex items-center mb-6">
<i class="fas fa-laptop-code text-3xl text-indigo-400 mr-2"></i>
<span class="text-2xl font-bold">TechEduHub</span>
</a>
<p class="text-gray-400 mb-4">Empowering the next generation of tech professionals through quality education.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<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-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Courses</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Support</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">FAQs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Refund Policy</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Contact Us</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-indigo-400"></i>
<span>123 Tech Street, Silicon Valley, CA 94000</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt mr-3 text-indigo-400"></i>
<span>+1 (555) 123-4567</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope mr-3 text-indigo-400"></i>
<span>info@techeduhub.com</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-400">
<p>&copy; 2023 TechEduHub. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});
</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=Bhevin/techeduhub-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>