
Use Med-Cert’s brand colors: forest green, white, and gold accents - Initial Deployment
bf0bc3a
verified
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Become a Certified CPR Instructor | Med-Cert</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, #1d5c1d 0%, #2e7d32 100%); | |
} | |
.course-card { | |
transition: transform 0.3s ease, box-shadow 0.3s ease; | |
} | |
.course-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.afterpay-logo { | |
height: 24px; | |
vertical-align: middle; | |
} | |
.testimonial-card { | |
background: rgba(255, 255, 255, 0.9); | |
backdrop-filter: blur(10px); | |
} | |
.enrollment-steps li::before { | |
content: counter(step-counter); | |
counter-increment: step-counter; | |
background-color: #2563eb; | |
color: white; | |
font-weight: bold; | |
border-radius: 50%; | |
width: 30px; | |
height: 30px; | |
display: inline-flex; | |
align-items: center; | |
justify-content: center; | |
margin-right: 10px; | |
} | |
</style> | |
</head> | |
<body class="font-sans antialiased text-gray-800"> | |
<!-- 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"> | |
<i class="fas fa-heartbeat text-red-600 text-3xl mr-2"></i> | |
<span class="text-2xl font-bold text-green-900">Med-Cert</span> | |
</div> | |
<nav class="hidden md:flex space-x-8"> | |
<a href="#course" class="font-medium hover:text-blue-600 transition">Course</a> | |
<a href="#benefits" class="font-medium hover:text-blue-600 transition">Benefits</a> | |
<a href="#testimonials" class="font-medium hover:text-blue-600 transition">Testimonials</a> | |
<a href="#faq" class="font-medium hover:text-blue-600 transition">FAQ</a> | |
</nav> | |
<button class="md:hidden text-blue-900" id="mobile-menu-button"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
<!-- Mobile Menu --> | |
<div class="hidden md:hidden bg-white py-2 px-4 shadow-lg" id="mobile-menu"> | |
<a href="#course" class="block py-2 hover:text-blue-600">Course</a> | |
<a href="#benefits" class="block py-2 hover:text-blue-600">Benefits</a> | |
<a href="#testimonials" class="block py-2 hover:text-blue-600">Testimonials</a> | |
<a href="#faq" class="block py-2 hover:text-blue-600">FAQ</a> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section class="hero-gradient text-white py-16 md:py-24"> | |
<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">Become a Certified CPR Instructor</h1> | |
<p class="text-xl mb-8">Join our comprehensive training program and gain the skills to teach life-saving CPR techniques to others.</p> | |
<div class="flex flex-col sm:flex-row gap-4"> | |
<a href="#enroll" class="bg-white text-green-900 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition duration-300 text-center"> | |
Enroll Now <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
<a href="#course" class="border-2 border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:text-blue-900 transition duration-300 text-center"> | |
Learn More | |
</a> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<img src="https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="CPR Training" | |
class="rounded-lg shadow-2xl max-w-md w-full h-auto object-cover"> | |
</div> | |
</div> | |
</section> | |
<!-- Course Highlights --> | |
<section id="course" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-green-900 mb-4">CPR Instructor Course</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Our comprehensive program prepares you to teach CPR with confidence and competence.</p> | |
</div> | |
<div class="grid md:grid-cols-3 gap-8 mb-12"> | |
<div class="course-card bg-white p-8 rounded-lg shadow-md"> | |
<div class="text-yellow-500 mb-4 text-4xl"> | |
<i class="fas fa-certificate"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Nationally Recognized Certification</h3> | |
<p class="text-gray-600">Receive certification recognized across the United States upon successful completion.</p> | |
</div> | |
<div class="course-card bg-white p-8 rounded-lg shadow-md"> | |
<div class="text-blue-600 mb-4 text-4xl"> | |
<i class="fas fa-chalkboard-teacher"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Expert Instruction</h3> | |
<p class="text-gray-600">Learn from experienced professionals with years of real-world emergency response experience.</p> | |
</div> | |
<div class="course-card bg-white p-8 rounded-lg shadow-md"> | |
<div class="text-blue-600 mb-4 text-4xl"> | |
<i class="fas fa-hand-holding-heart"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-3">Hands-On Training</h3> | |
<p class="text-gray-600">Practical, interactive sessions that prepare you to teach CPR effectively.</p> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-lg overflow-hidden max-w-4xl mx-auto"> | |
<div class="md:flex"> | |
<div class="md:w-1/2 p-8"> | |
<h3 class="text-2xl font-bold text-blue-900 mb-4">Course Details</h3> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>8-hour intensive training program</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Includes instructor manual and teaching materials</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Small class sizes for personalized attention</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Certification valid for 2 years</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Ongoing support after certification</span> | |
</li> | |
</ul> | |
</div> | |
<div class="md:w-1/2 bg-green-50 p-8 flex flex-col justify-between"> | |
<div> | |
<h3 class="text-2xl font-bold text-blue-900 mb-4">Investment</h3> | |
<div class="mb-6"> | |
<p class="text-4xl font-bold text-blue-900">$500</p> | |
<p class="text-gray-600">One-time payment or flexible financing</p> | |
</div> | |
<div class="flex items-center mb-6"> | |
<img src="https://static.afterpay.com/integration/product-page/logo-afterpay-colour.png" | |
alt="Afterpay" | |
class="afterpay-logo mr-2"> | |
<span class="text-gray-700">Available - Pay in 4 interest-free installments</span> | |
</div> | |
</div> | |
<a href="#enroll" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-6 rounded-lg text-center transition duration-300 block"> | |
Enroll Now | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Benefits Section --> | |
<section id="benefits" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-blue-900 mb-4">Why Become a CPR Instructor?</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Teaching CPR is rewarding both personally and professionally.</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="bg-blue-50 rounded-lg p-6"> | |
<div class="text-blue-600 mb-3 text-3xl"> | |
<i class="fas fa-dollar-sign"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Earn Extra Income</h3> | |
<p class="text-gray-700">CPR instructors can earn $50-$150 per class, creating a flexible income stream.</p> | |
</div> | |
<div class="bg-blue-50 rounded-lg p-6"> | |
<div class="text-blue-600 mb-3 text-3xl"> | |
<i class="fas fa-users"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Make a Difference</h3> | |
<p class="text-gray-700">Empower others with life-saving skills that can literally save lives.</p> | |
</div> | |
<div class="bg-blue-50 rounded-lg p-6"> | |
<div class="text-blue-600 mb-3 text-3xl"> | |
<i class="fas fa-briefcase"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Career Advancement</h3> | |
<p class="text-gray-700">Enhance your resume and open doors in healthcare, education, and safety professions.</p> | |
</div> | |
<div class="bg-blue-50 rounded-lg p-6"> | |
<div class="text-blue-600 mb-3 text-3xl"> | |
<i class="fas fa-calendar-alt"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Flexible Schedule</h3> | |
<p class="text-gray-700">Teach classes on your schedule - days, evenings, or weekends.</p> | |
</div> | |
<div class="bg-blue-50 rounded-lg p-6"> | |
<div class="text-blue-600 mb-3 text-3xl"> | |
<i class="fas fa-network-wired"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Networking Opportunities</h3> | |
<p class="text-gray-700">Connect with healthcare professionals and community leaders.</p> | |
</div> | |
<div class="bg-blue-50 rounded-lg p-6"> | |
<div class="text-blue-600 mb-3 text-3xl"> | |
<i class="fas fa-heartbeat"></i> | |
</div> | |
<h3 class="text-xl font-bold mb-2">Personal Growth</h3> | |
<p class="text-gray-700">Gain confidence in emergency situations and leadership skills.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials --> | |
<section id="testimonials" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-blue-900 mb-4">What Our Graduates Say</h2> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from CPR instructors who completed our program.</p> | |
</div> | |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="testimonial-card rounded-lg p-6 shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-blue-200 flex items-center justify-center text-blue-800 font-bold mr-4">JD</div> | |
<div> | |
<h4 class="font-bold">Jamie D.</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-gray-700 italic">"The Med-Cert CPR instructor course gave me the confidence and skills to teach effectively. I've already taught three classes in my community and the feedback has been amazing!"</p> | |
</div> | |
<div class="testimonial-card rounded-lg p-6 shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-blue-200 flex items-center justify-center text-blue-800 font-bold mr-4">MS</div> | |
<div> | |
<h4 class="font-bold">Maria S.</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-gray-700 italic">"As a nurse, I wanted to expand my skills. This course was comprehensive yet easy to follow. The instructor was knowledgeable and made the material engaging."</p> | |
</div> | |
<div class="testimonial-card rounded-lg p-6 shadow-md"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 rounded-full bg-blue-200 flex items-center justify-center text-blue-800 font-bold mr-4">TK</div> | |
<div> | |
<h4 class="font-bold">Thomas K.</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-gray-700 italic">"I was able to pay with Afterpay which made it affordable. The course paid for itself after just two classes I taught at my workplace. Highly recommend!"</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Enrollment Process --> | |
<section id="enroll" class="py-16 bg-white"> | |
<div class="container mx-auto px-4"> | |
<div class="max-w-4xl mx-auto bg-blue-50 rounded-lg p-8 md:p-12 shadow-lg"> | |
<h2 class="text-3xl font-bold text-blue-900 mb-8 text-center">Ready to Become a CPR Instructor?</h2> | |
<div class="mb-8"> | |
<h3 class="text-xl font-bold mb-4">Enrollment Process</h3> | |
<ol class="enrollment-steps space-y-4 pl-0 list-none" style="counter-reset: step-counter;"> | |
<li class="flex items-start"> | |
<span>Complete the online registration form below</span> | |
</li> | |
<li class="flex items-start"> | |
<span>Choose your payment method (full payment or Afterpay)</span> | |
</li> | |
<li class="flex items-start"> | |
<span>Receive course materials and schedule confirmation</span> | |
</li> | |
<li class="flex items-start"> | |
<span>Attend the 8-hour training session</span> | |
</li> | |
<li class="flex items-start"> | |
<span>Pass the practical and written exams</span> | |
</li> | |
<li class="flex items-start"> | |
<span>Receive your CPR Instructor certification</span> | |
</li> | |
</ol> | |
</div> | |
<div class="bg-white rounded-lg p-6 shadow-md mb-8"> | |
<h3 class="text-xl font-bold mb-4 text-center">Upcoming Course Dates</h3> | |
<div class="grid md:grid-cols-3 gap-4"> | |
<div class="border border-blue-200 rounded-lg p-4 text-center"> | |
<p class="font-bold">June 15, 2023</p> | |
<p class="text-sm text-gray-600">9:00 AM - 5:00 PM</p> | |
<p class="text-sm mt-2">5 spots remaining</p> | |
</div> | |
<div class="border border-blue-200 rounded-lg p-4 text-center"> | |
<p class="font-bold">July 6, 2023</p> | |
<p class="text-sm text-gray-600">9:00 AM - 5:00 PM</p> | |
<p class="text-sm mt-2">8 spots remaining</p> | |
</div> | |
<div class="border border-blue-200 rounded-lg p-4 text-center"> | |
<p class="font-bold">July 20, 2023</p> | |
<p class="text-sm text-gray-600">9:00 AM - 5:00 PM</p> | |
<p class="text-sm mt-2">12 spots remaining</p> | |
</div> | |
</div> | |
</div> | |
<form class="space-y-4"> | |
<div class="grid md:grid-cols-2 gap-4"> | |
<div> | |
<label for="first-name" class="block text-sm font-medium text-gray-700 mb-1">First Name</label> | |
<input type="text" id="first-name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div> | |
<label for="last-name" class="block text-sm font-medium text-gray-700 mb-1">Last Name</label> | |
<input type="text" id="last-name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
</div> | |
<div> | |
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label> | |
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div> | |
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Phone Number</label> | |
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div> | |
<label for="course-date" class="block text-sm font-medium text-gray-700 mb-1">Preferred Course Date</label> | |
<select id="course-date" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-blue-500 focus:border-blue-500"> | |
<option value="">Select a date</option> | |
<option value="2023-06-15">June 15, 2023</option> | |
<option value="2023-07-06">July 6, 2023</option> | |
<option value="2023-07-20">July 20, 2023</option> | |
</select> | |
</div> | |
<div> | |
<label class="block text-sm font-medium text-gray-700 mb-2">Payment Method</label> | |
<div class="space-y-2"> | |
<div class="flex items-center"> | |
<input id="full-payment" name="payment" type="radio" class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300" checked> | |
<label for="full-payment" class="ml-2 block text-sm text-gray-900">Pay in Full ($500)</label> | |
</div> | |
<div class="flex items-center"> | |
<input id="afterpay" name="payment" type="radio" class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300"> | |
<label for="afterpay" class="ml-2 block text-sm text-gray-900"> | |
<span>Afterpay (4 payments of $125)</span> | |
<img src="https://static.afterpay.com/integration/product-page/logo-afterpay-colour.png" | |
alt="Afterpay" | |
class="afterpay-logo ml-2 inline-block"> | |
</label> | |
</div> | |
</div> | |
</div> | |
<div class="pt-4"> | |
<button type="submit" class="w-full bg-green-700 hover:bg-green-800 text-white font-bold py-3 px-6 rounded-lg transition duration-300"> | |
Enroll Now | |
</button> | |
</div> | |
</form> | |
</div> | |
</div> | |
</section> | |
<!-- FAQ Section --> | |
<section id="faq" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-4 max-w-4xl"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-blue-900 mb-4">Frequently Asked Questions</h2> | |
<p class="text-xl text-gray-600">Find answers to common questions about our CPR Instructor course.</p> | |
</div> | |
<div class="space-y-4"> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
<button class="faq-question w-full text-left p-4 font-medium text-lg flex justify-between items-center hover:bg-blue-50 transition"> | |
<span>What are the prerequisites for the CPR Instructor course?</span> | |
<i class="fas fa-chevron-down transition-transform duration-300"></i> | |
</button> | |
<div class="faq-answer px-4 pb-4 hidden"> | |
<p class="text-gray-700">Participants must be at least 18 years old and have a current CPR certification (we can help you obtain this if needed). No prior teaching experience is required.</p> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
<button class="faq-question w-full text-left p-4 font-medium text-lg flex justify-between items-center hover:bg-blue-50 transition"> | |
<span>How long does the certification last?</span> | |
<i class="fas fa-chevron-down transition-transform duration-300"></i> | |
</button> | |
<div class="faq-answer px-4 pb-4 hidden"> | |
<p class="text-gray-700">Your CPR Instructor certification is valid for 2 years. We offer renewal courses to keep your certification current.</p> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
<button class="faq-question w-full text-left p-4 font-medium text-lg flex justify-between items-center hover:bg-blue-50 transition"> | |
<span>What materials are included in the course fee?</span> | |
<i class="fas fa-chevron-down transition-transform duration-300"></i> | |
</button> | |
<div class="faq-answer px-4 pb-4 hidden"> | |
<p class="text-gray-700">The $500 fee includes the instructor manual, teaching materials, certification processing, and all training supplies. You'll also receive ongoing access to our instructor resource portal.</p> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
<button class="faq-question w-full text-left p-4 font-medium text-lg flex justify-between items-center hover:bg-blue-50 transition"> | |
<span>Can I teach CPR classes immediately after certification?</span> | |
<i class="fas fa-chevron-down transition-transform duration-300"></i> | |
</button> | |
<div class="faq-answer px-4 pb-4 hidden"> | |
<p class="text-gray-700">Yes! Once certified, you can begin teaching CPR classes right away. We provide guidance on marketing your classes and connecting with organizations that need instructors.</p> | |
</div> | |
</div> | |
<div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
<button class="faq-question w-full text-left p-4 font-medium text-lg flex justify-between items-center hover:bg-blue-50 transition"> | |
<span>What is your refund policy?</span> | |
<i class="fas fa-chevron-down transition-transform duration-300"></i> | |
</button> | |
<div class="faq-answer px-4 pb-4 hidden"> | |
<p class="text-gray-700">We offer a full refund if cancellation is made at least 7 days before the course date. Cancellations within 7 days may be rescheduled for a future course.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Call to Action --> | |
<section class="py-16 bg-green-900 text-white"> | |
<div class="container mx-auto px-4 text-center"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Start Your Journey as a CPR Instructor?</h2> | |
<p class="text-xl mb-8 max-w-2xl mx-auto">Join our next training session and gain the skills to teach life-saving techniques in your community.</p> | |
<a href="#enroll" class="bg-white text-blue-900 font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition duration-300 inline-block"> | |
Enroll Now <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-green-900 text-white py-12"> | |
<div class="container mx-auto px-4"> | |
<div class="grid md:grid-cols-4 gap-8"> | |
<div> | |
<div class="flex items-center mb-4"> | |
<i class="fas fa-heartbeat text-red-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold">Med-Cert</span> | |
</div> | |
<p class="text-gray-400">Providing high-quality CPR and first aid training since 2010.</p> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Quick Links</h3> | |
<ul class="space-y-2"> | |
<li><a href="#course" class="text-gray-400 hover:text-white transition">Course Details</a></li> | |
<li><a href="#benefits" class="text-gray-400 hover:text-white transition">Benefits</a></li> | |
<li><a href="#testimonials" class="text-gray-400 hover:text-white transition">Testimonials</a></li> | |
<li><a href="#faq" class="text-gray-400 hover:text-white transition">FAQ</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Contact Us</h3> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-center"> | |
<i class="fas fa-phone-alt mr-2"></i> | |
<span>(555) 123-4567</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-envelope mr-2"></i> | |
<span>[email protected]</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-map-marker-alt mr-2"></i> | |
<span>123 Training St, Suite 100<br>Anytown, USA 12345</span> | |
</li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Follow Us</h3> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition text-xl"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition text-xl"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition text-xl"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition text-xl"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
</div> | |
<div class="mt-6"> | |
<img src="https://static.afterpay.com/integration/product-page/logo-afterpay-colour.png" | |
alt="Afterpay" | |
class="afterpay-logo"> | |
</div> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
<p>© 2023 Med-Cert. All rights reserved.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
const menu = document.getElementById('mobile-menu'); | |
menu.classList.toggle('hidden'); | |
}); | |
// FAQ accordion functionality | |
document.querySelectorAll('.faq-question').forEach(button => { | |
button.addEventListener('click', () => { | |
const answer = button.nextElementSibling; | |
const icon = button.querySelector('i'); | |
// Toggle answer visibility | |
answer.classList.toggle('hidden'); | |
// Rotate icon | |
icon.classList.toggle('rotate-180'); | |
// Close other open answers | |
document.querySelectorAll('.faq-question').forEach(otherButton => { | |
if (otherButton !== button) { | |
otherButton.nextElementSibling.classList.add('hidden'); | |
otherButton.querySelector('i').classList.remove('rotate-180'); | |
} | |
}); | |
}); | |
}); | |
// 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' | |
}); | |
// Close mobile menu if open | |
const mobileMenu = document.getElementById('mobile-menu'); | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
</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=Big-Dog-Status/instructor-class-landing-page-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |