learn-electrical / electricians.html
Animedada's picture
Can you also add model like from the Nccer book? (If you have to change things up becase of copyright thrn fo it nut This website is meant to be a other way people can learn about this suff just like the book but free) - Follow Up Deployment
65c7a39 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Electrician Learning Hub</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.lesson-card {
transition: all 0.3s ease;
}
.lesson-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.safety-banner {
background-image: linear-gradient(to right, #ff4b1f, #ff9068);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-xl font-bold text-indigo-600">ElectricianHub</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-4">
<a href="index.html" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Home</a>
<a href="electricians.html" class="text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Lessons</a>
<a href="interactive.html" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Interactive</a>
<a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Tools</a>
<a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Safety</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="py-20 bg-gradient-to-r from-indigo-500 to-blue-600 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Electrician Learning Hub</h1>
<p class="text-xl mb-8">Master electrical skills with our comprehensive lessons and tutorials</p>
<div class="flex justify-center space-x-4">
<button class="bg-white text-indigo-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 transition duration-300">Beginner Lessons</button>
<button class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-md font-medium hover:bg-white hover:text-indigo-600 transition duration-300">Advanced Courses</button>
</div>
</div>
</section>
<!-- Safety Banner -->
<div class="safety-banner py-4 text-white text-center">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="font-bold"><i data-feather="alert-triangle" class="inline mr-2"></i> Always follow safety procedures when working with electricity</p>
</div>
</div>
<!-- Lessons Section -->
<section class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold mb-12 text-center">Popular Lessons</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Lesson 1 -->
<div class="lesson-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up">
<img src="http://static.photos/technology/640x360/101" alt="Electrical Basics" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Electrical Fundamentals</h3>
<p class="text-gray-600 mb-4">Learn the basics of electricity, circuits, and components.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-indigo-600 font-medium">Beginner</span>
<button class="text-indigo-600 hover:text-indigo-800 font-medium">Start Lesson</button>
</div>
</div>
</div>
<!-- Lesson 2 -->
<div class="lesson-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="100">
<img src="http://static.photos/construction/640x360/102" alt="Wiring" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Residential Wiring</h3>
<p class="text-gray-600 mb-4">Master home electrical systems and wiring techniques.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-indigo-600 font-medium">Intermediate</span>
<button class="text-indigo-600 hover:text-indigo-800 font-medium">Start Lesson</button>
</div>
</div>
</div>
<!-- Lesson 3 -->
<div class="lesson-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="200">
<img src="http://static.photos/industry/640x360/103" alt="Safety" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Electrical Safety</h3>
<p class="text-gray-600 mb-4">Essential safety procedures and protective equipment.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-indigo-600 font-medium">All Levels</span>
<button class="text-indigo-600 hover:text-indigo-800 font-medium">Start Lesson</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Free Resources Section -->
<section class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold mb-12 text-center">Free Online Resources</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Resource 1 -->
<div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up">
<a href="https://www.electrical4u.com/" target="_blank" class="block">
<h3 class="text-xl font-bold mb-2 text-indigo-600">Electrical4U</h3>
<p class="text-gray-600 mb-3">Free electrical engineering tutorials and articles</p>
<span class="text-sm text-gray-500">electrical4u.com</span>
</a>
</div>
<!-- Resource 2 -->
<div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up" data-aos-delay="100">
<a href="https://www.ecmweb.com/" target="_blank" class="block">
<h3 class="text-xl font-bold mb-2 text-indigo-600">EC&M Magazine</h3>
<p class="text-gray-600 mb-3">Electrical construction & maintenance resources</p>
<span class="text-sm text-gray-500">ecmweb.com</span>
</a>
</div>
<!-- Resource 3 -->
<div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up" data-aos-delay="200">
<a href="https://www.youtube.com/user/ElectricianU" target="_blank" class="block">
<h3 class="text-xl font-bold mb-2 text-indigo-600">Electrician U</h3>
<p class="text-gray-600 mb-3">YouTube channel with practical electrical tutorials</p>
<span class="text-sm text-gray-500">youtube.com</span>
</a>
</div>
<!-- Resource 4 -->
<div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up" data-aos-delay="300">
<a href="https://www.osha.gov/electrical" target="_blank" class="block">
<h3 class="text-xl font-bold mb-2 text-indigo-600">OSHA Electrical</h3>
<p class="text-gray-600 mb-3">Official electrical safety standards and guidelines</p>
<span class="text-sm text-gray-500">osha.gov</span>
</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold">Learning Approach</h2>
<p class="text-gray-600 mt-4 max-w-2xl mx-auto">Our structured curriculum helps you progress from basics to advanced techniques</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center p-6" data-aos="fade-up">
<i data-feather="book" class="w-12 h-12 text-indigo-600 mx-auto mb-4"></i>
<h3 class="text-xl font-bold mb-2">Step-by-Step Lessons</h3>
<p class="text-gray-600">Detailed tutorials with clear explanations and diagrams</p>
</div>
<div class="text-center p-6" data-aos="fade-up" data-aos-delay="100">
<i data-feather="video" class="w-12 h-12 text-indigo-600 mx-auto mb-4"></i>
<h3 class="text-xl font-bold mb-2">Video Demonstrations</h3>
<p class="text-gray-600">Watch professionals perform electrical work correctly</p>
</div>
<div class="text-center p-6" data-aos="fade-up" data-aos-delay="200">
<i data-feather="check-circle" class="w-12 h-12 text-indigo-600 mx-auto mb-4"></i>
<h3 class="text-xl font-bold mb-2">Practical Exercises</h3>
<p class="text-gray-600">Hands-on projects to apply what you've learned</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-gradient-to-r from-blue-600 to-indigo-700 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Advance Your Skills?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">Combine our lessons with these free resources for comprehensive learning</p>
<button class="bg-white text-indigo-600 px-8 py-4 rounded-md font-bold hover:bg-gray-100 transition duration-300 shadow-lg">Explore All Lessons</button>
</div>
</section>
<script>
AOS.init();
feather.replace();
</script>
</body>
</html>