Spaces:
Running
Running
Create about.html
Browse files- about.html +249 -0
about.html
ADDED
|
@@ -0,0 +1,249 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>About - AlFarooq Academy</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.about-hero {
|
| 15 |
+
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('http://static.photos/education/1200x630/3');
|
| 16 |
+
background-size: cover;
|
| 17 |
+
background-position: center;
|
| 18 |
+
}
|
| 19 |
+
.team-card:hover {
|
| 20 |
+
transform: translateY(-5px);
|
| 21 |
+
transition: all 0.3s ease;
|
| 22 |
+
}
|
| 23 |
+
</style>
|
| 24 |
+
</head>
|
| 25 |
+
<body class="font-sans bg-gray-50">
|
| 26 |
+
<!-- Navigation -->
|
| 27 |
+
<nav class="bg-white shadow-lg fixed w-full z-10">
|
| 28 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 29 |
+
<div class="flex justify-between h-16">
|
| 30 |
+
<div class="flex items-center">
|
| 31 |
+
<div class="flex-shrink-0 flex items-center">
|
| 32 |
+
<i data-feather="book-open" class="text-indigo-600 h-8 w-8"></i>
|
| 33 |
+
<span class="ml-2 text-xl font-bold text-gray-900">AlFarooq Academy</span>
|
| 34 |
+
</div>
|
| 35 |
+
</div>
|
| 36 |
+
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
| 37 |
+
<a href="index.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
|
| 38 |
+
<a href="about.html" class="text-indigo-600 border-b-2 border-indigo-600 px-3 py-2 text-sm font-medium">About</a>
|
| 39 |
+
<a href="register.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Register</a>
|
| 40 |
+
<a href="index.html#contact" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700">Contact</a>
|
| 41 |
+
</div>
|
| 42 |
+
<div class="-mr-2 flex items-center md:hidden">
|
| 43 |
+
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-indigo-600 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button">
|
| 44 |
+
<i data-feather="menu"></i>
|
| 45 |
+
</button>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
</div>
|
| 49 |
+
|
| 50 |
+
<!-- Mobile menu -->
|
| 51 |
+
<div class="hidden md:hidden" id="mobile-menu">
|
| 52 |
+
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
|
| 53 |
+
<a href="index.html" class="text-gray-500 hover:bg-indigo-50 hover:text-indigo-600 block px-3 py-2 rounded-md text-base font-medium">Home</a>
|
| 54 |
+
<a href="about.html" class="bg-indigo-600 text-white block px-3 py-2 rounded-md text-base font-medium">About</a>
|
| 55 |
+
<a href="register.html" class="text-gray-500 hover:bg-indigo-50 hover:text-indigo-600 block px-3 py-2 rounded-md text-base font-medium">Register</a>
|
| 56 |
+
<a href="index.html#contact" class="text-gray-500 hover:bg-indigo-50 hover:text-indigo-600 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
|
| 57 |
+
</div>
|
| 58 |
+
</div>
|
| 59 |
+
</nav>
|
| 60 |
+
|
| 61 |
+
<!-- Hero Section -->
|
| 62 |
+
<section class="about-hero text-white pt-32 pb-20 px-4 sm:px-6 lg:px-8">
|
| 63 |
+
<div class="max-w-7xl mx-auto text-center">
|
| 64 |
+
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl" data-aos="fade-up">About AlFarooq Academy</h1>
|
| 65 |
+
<p class="mt-6 max-w-3xl mx-auto text-lg" data-aos="fade-up" data-aos-delay="100">Our mission is to provide quality education that empowers students to achieve their academic goals and beyond.</p>
|
| 66 |
+
</div>
|
| 67 |
+
</section>
|
| 68 |
+
|
| 69 |
+
<!-- Our Story -->
|
| 70 |
+
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
|
| 71 |
+
<div class="max-w-7xl mx-auto">
|
| 72 |
+
<div class="lg:flex lg:items-center lg:justify-between">
|
| 73 |
+
<div class="lg:w-1/2" data-aos="fade-right">
|
| 74 |
+
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Our Story</h2>
|
| 75 |
+
<p class="mt-4 text-lg text-gray-500">Founded in 2010 by Professor Muhammad Farooq, AlFarooq Academy began as a small tutoring center with a vision to transform education in Pakistan.</p>
|
| 76 |
+
<p class="mt-4 text-lg text-gray-500">What started with just 5 students in a single classroom has grown into one of the most respected educational institutions in the region, serving hundreds of students annually.</p>
|
| 77 |
+
<p class="mt-4 text-lg text-gray-500">Our commitment to academic excellence, personalized attention, and innovative teaching methods has helped thousands of students achieve their dreams.</p>
|
| 78 |
+
</div>
|
| 79 |
+
<div class="mt-12 lg:mt-0 lg:w-1/2" data-aos="fade-left">
|
| 80 |
+
<img src="http://static.photos/education/640x360/4" alt="Academy building" class="rounded-lg shadow-xl">
|
| 81 |
+
</div>
|
| 82 |
+
</div>
|
| 83 |
+
</div>
|
| 84 |
+
</section>
|
| 85 |
+
|
| 86 |
+
<!-- Our Approach -->
|
| 87 |
+
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-indigo-50">
|
| 88 |
+
<div class="max-w-7xl mx-auto">
|
| 89 |
+
<div class="text-center" data-aos="fade-up">
|
| 90 |
+
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Our Teaching Approach</h2>
|
| 91 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-600 mx-auto">We combine traditional teaching methods with modern educational technology</p>
|
| 92 |
+
</div>
|
| 93 |
+
<div class="mt-12 grid gap-8 md:grid-cols-3">
|
| 94 |
+
<div class="bg-white p-8 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="100">
|
| 95 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
|
| 96 |
+
<i data-feather="users"></i>
|
| 97 |
+
</div>
|
| 98 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Personalized Learning</h3>
|
| 99 |
+
<p class="mt-2 text-base text-gray-500">Each student receives individual attention with customized lesson plans tailored to their learning style and pace.</p>
|
| 100 |
+
</div>
|
| 101 |
+
<div class="bg-white p-8 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="200">
|
| 102 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
|
| 103 |
+
<i data-feather="activity"></i>
|
| 104 |
+
</div>
|
| 105 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Interactive Sessions</h3>
|
| 106 |
+
<p class="mt-2 text-base text-gray-500">Our classes are designed to be engaging and interactive, encouraging students to participate actively in their learning.</p>
|
| 107 |
+
</div>
|
| 108 |
+
<div class="bg-white p-8 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="300">
|
| 109 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
|
| 110 |
+
<i data-feather="bar-chart-2"></i>
|
| 111 |
+
</div>
|
| 112 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Progress Tracking</h3>
|
| 113 |
+
<p class="mt-2 text-base text-gray-500">Regular assessments and feedback help students and parents track progress and identify areas for improvement.</p>
|
| 114 |
+
</div>
|
| 115 |
+
</div>
|
| 116 |
+
</div>
|
| 117 |
+
</section>
|
| 118 |
+
|
| 119 |
+
<!-- Meet the Team -->
|
| 120 |
+
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
|
| 121 |
+
<div class="max-w-7xl mx-auto">
|
| 122 |
+
<div class="text-center" data-aos="fade-up">
|
| 123 |
+
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Meet Our Team</h2>
|
| 124 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-600 mx-auto">Our dedicated team of educators is committed to your success</p>
|
| 125 |
+
</div>
|
| 126 |
+
<div class="mt-12 grid gap-8 md:grid-cols-2 lg:grid-cols-4">
|
| 127 |
+
<div class="team-card bg-white p-6 rounded-lg shadow-md text-center" data-aos="fade-up" data-aos-delay="100">
|
| 128 |
+
<img class="mx-auto h-32 w-32 rounded-full" src="http://static.photos/people/200x200/4" alt="Professor">
|
| 129 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Prof. Muhammad Farooq</h3>
|
| 130 |
+
<p class="text-indigo-600">Founder & Director</p>
|
| 131 |
+
<p class="mt-2 text-sm text-gray-500">PhD in Physics with 20+ years of teaching experience</p>
|
| 132 |
+
</div>
|
| 133 |
+
<div class="team-card bg-white p-6 rounded-lg shadow-md text-center" data-aos="fade-up" data-aos-delay="200">
|
| 134 |
+
<img class="mx-auto h-32 w-32 rounded-full" src="http://static.photos/people/200x200/5" alt="Professor">
|
| 135 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Dr. Aisha Khan</h3>
|
| 136 |
+
<p class="text-indigo-600">Mathematics Department</p>
|
| 137 |
+
<p class="mt-2 text-sm text-gray-500">Specializes in Calculus and Advanced Mathematics</p>
|
| 138 |
+
</div>
|
| 139 |
+
<div class="team-card bg-white p-6 rounded-lg shadow-md text-center" data-aos="fade-up" data-aos-delay="300">
|
| 140 |
+
<img class="mx-auto h-32 w-32 rounded-full" src="http://static.photos/people/200x200/6" alt="Professor">
|
| 141 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Mr. Ali Raza</h3>
|
| 142 |
+
<p class="text-indigo-600">Chemistry Department</p>
|
| 143 |
+
<p class="mt-2 text-sm text-gray-500">Expert in Organic Chemistry and Laboratory Techniques</p>
|
| 144 |
+
</div>
|
| 145 |
+
<div class="team-card bg-white p-6 rounded-lg shadow-md text-center" data-aos="fade-up" data-aos-delay="400">
|
| 146 |
+
<img class="mx-auto h-32 w-32 rounded-full" src="http://static.photos/people/200x200/7" alt="Professor">
|
| 147 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Ms. Sara Ahmed</h3>
|
| 148 |
+
<p class="text-indigo-600">Biology Department</p>
|
| 149 |
+
<p class="mt-2 text-sm text-gray-500">Specializes in Molecular Biology and Genetics</p>
|
| 150 |
+
</div>
|
| 151 |
+
</div>
|
| 152 |
+
</div>
|
| 153 |
+
</section>
|
| 154 |
+
|
| 155 |
+
<!-- Call to Action -->
|
| 156 |
+
<section class="bg-indigo-700 text-white py-16 px-4 sm:px-6 lg:px-8">
|
| 157 |
+
<div class="max-w-7xl mx-auto text-center">
|
| 158 |
+
<h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl" data-aos="fade-up">Ready to start your learning journey?</h2>
|
| 159 |
+
<p class="mt-6 max-w-3xl mx-auto text-lg" data-aos="fade-up" data-aos-delay="100">Join hundreds of successful students who have transformed their academic performance with our guidance.</p>
|
| 160 |
+
<div class="mt-8" data-aos="fade-up" data-aos-delay="200">
|
| 161 |
+
<a href="register.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-700 bg-white hover:bg-indigo-50">Register Now</a>
|
| 162 |
+
</div>
|
| 163 |
+
</div>
|
| 164 |
+
</section>
|
| 165 |
+
|
| 166 |
+
<!-- Footer -->
|
| 167 |
+
<footer class="bg-gray-800 text-white py-12 px-4 sm:px-6 lg:px-8">
|
| 168 |
+
<div class="max-w-7xl mx-auto">
|
| 169 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
|
| 170 |
+
<div>
|
| 171 |
+
<h3 class="text-lg font-medium">AlFarooq Academy</h3>
|
| 172 |
+
<p class="mt-4 text-gray-400">Empowering students through quality education since 2010.</p>
|
| 173 |
+
<div class="mt-4 flex space-x-6">
|
| 174 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 175 |
+
<i data-feather="facebook"></i>
|
| 176 |
+
</a>
|
| 177 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 178 |
+
<i data-feather="twitter"></i>
|
| 179 |
+
</a>
|
| 180 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 181 |
+
<i data-feather="instagram"></i>
|
| 182 |
+
</a>
|
| 183 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 184 |
+
<i data-feather="linkedin"></i>
|
| 185 |
+
</a>
|
| 186 |
+
</div>
|
| 187 |
+
</div>
|
| 188 |
+
<div>
|
| 189 |
+
<h3 class="text-lg font-medium">Quick Links</h3>
|
| 190 |
+
<ul class="mt-4 space-y-2">
|
| 191 |
+
<li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
|
| 192 |
+
<li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
|
| 193 |
+
<li><a href="register.html" class="text-gray-400 hover:text-white">Register</a></li>
|
| 194 |
+
<li><a href="index.html#contact" class="text-gray-400 hover:text-white">Contact</a></li>
|
| 195 |
+
</ul>
|
| 196 |
+
</div>
|
| 197 |
+
<div>
|
| 198 |
+
<h3 class="text-lg font-medium">Courses</h3>
|
| 199 |
+
<ul class="mt-4 space-y-2">
|
| 200 |
+
<li><a href="#" class="text-gray-400 hover:text-white">Mathematics</a></li>
|
| 201 |
+
<li><a href="#" class="text-gray-400 hover:text-white">Physics</a></li>
|
| 202 |
+
<li><a href="#" class="text-gray-400 hover:text-white">Chemistry</a></li>
|
| 203 |
+
<li><a href="#" class="text-gray-400 hover:text-white">Biology</a></li>
|
| 204 |
+
</ul>
|
| 205 |
+
</div>
|
| 206 |
+
<div>
|
| 207 |
+
<h3 class="text-lg font-medium">Contact</h3>
|
| 208 |
+
<ul class="mt-4 space-y-2">
|
| 209 |
+
<li class="flex items-start">
|
| 210 |
+
<i data-feather="map-pin" class="h-5 w-5 text-gray-400 mr-2"></i>
|
| 211 |
+
<span class="text-gray-400">123 Education Street, Karachi, Pakistan</span>
|
| 212 |
+
</li>
|
| 213 |
+
<li class="flex items-center">
|
| 214 |
+
<i data-feather="mail" class="h-5 w-5 text-gray-400 mr-2"></i>
|
| 215 |
+
<span class="text-gray-400">info@alfarooqacademy.com</span>
|
| 216 |
+
</li>
|
| 217 |
+
<li class="flex items-center">
|
| 218 |
+
<i data-feather="phone" class="h-5 w-5 text-gray-400 mr-2"></i>
|
| 219 |
+
<span class="text-gray-400">+92 300 1234567</span>
|
| 220 |
+
</li>
|
| 221 |
+
</ul>
|
| 222 |
+
</div>
|
| 223 |
+
</div>
|
| 224 |
+
<div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center">
|
| 225 |
+
<p class="text-gray-400">© 2023 AlFarooq Academy. All rights reserved.</p>
|
| 226 |
+
<div class="mt-4 md:mt-0">
|
| 227 |
+
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
|
| 228 |
+
<span class="mx-2 text-gray-600">|</span>
|
| 229 |
+
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
|
| 230 |
+
</div>
|
| 231 |
+
</div>
|
| 232 |
+
</div>
|
| 233 |
+
</footer>
|
| 234 |
+
|
| 235 |
+
<script>
|
| 236 |
+
// Mobile menu toggle
|
| 237 |
+
document.getElementById('mobile-menu-button').addEventListener('click', function() {
|
| 238 |
+
const menu = document.getElementById('mobile-menu');
|
| 239 |
+
if (menu.classList.contains('hidden')) {
|
| 240 |
+
menu.classList.remove('hidden');
|
| 241 |
+
} else {
|
| 242 |
+
menu.classList.add('hidden');
|
| 243 |
+
}
|
| 244 |
+
});
|
| 245 |
+
</script>
|
| 246 |
+
<script>AOS.init();</script>
|
| 247 |
+
<script>feather.replace();</script>
|
| 248 |
+
</body>
|
| 249 |
+
</html>
|