MalikZeeshan commited on
Commit
86c4d76
·
verified ·
1 Parent(s): 2788fc3

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +347 -19
index.html CHANGED
@@ -1,19 +1,347 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>AlFarooq Academy - Home</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
+ .hero-bg {
15
+ background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('http://static.photos/education/1200x630/1');
16
+ background-size: cover;
17
+ background-position: center;
18
+ }
19
+ .feature-card:hover {
20
+ transform: translateY(-10px);
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-indigo-600 border-b-2 border-indigo-600 px-3 py-2 text-sm font-medium">Home</a>
38
+ <a href="about.html" class="text-gray-500 hover:text-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="#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="bg-indigo-600 text-white block px-3 py-2 rounded-md text-base font-medium">Home</a>
54
+ <a href="about.html" class="text-gray-500 hover:bg-indigo-50 hover:text-indigo-600 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="#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="hero-bg text-white pt-32 pb-20 px-4 sm:px-6 lg:px-8">
63
+ <div class="max-w-7xl mx-auto">
64
+ <div class="md:flex md:items-center md:justify-between">
65
+ <div class="md:w-1/2" data-aos="fade-right">
66
+ <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">Transform Your Future with AlFarooq Academy</h1>
67
+ <p class="mt-3 max-w-md text-lg text-gray-300 sm:text-xl md:mt-5 md:max-w-3xl">Join our expert-led classes and unlock your potential through personalized learning experiences.</p>
68
+ <div class="mt-8 flex flex-col sm:flex-row gap-4">
69
+ <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>
70
+ <a href="#features" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70">Learn More</a>
71
+ </div>
72
+ </div>
73
+ <div class="mt-12 md:mt-0 md:w-1/2" data-aos="fade-left">
74
+ <img src="http://static.photos/education/640x360/2" alt="Students learning" class="rounded-lg shadow-xl">
75
+ </div>
76
+ </div>
77
+ </div>
78
+ </section>
79
+
80
+ <!-- Features Section -->
81
+ <section id="features" class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
82
+ <div class="max-w-7xl mx-auto">
83
+ <div class="text-center" data-aos="fade-up">
84
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Our Learning Options</h2>
85
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">Choose the learning method that suits you best</p>
86
+ </div>
87
+ <div class="mt-12 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
88
+ <div class="feature-card bg-white p-8 rounded-lg shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="100">
89
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
90
+ <i data-feather="home"></i>
91
+ </div>
92
+ <h3 class="mt-6 text-lg font-medium text-gray-900">Physical Classes</h3>
93
+ <p class="mt-2 text-base text-gray-500">Join our in-person classes with expert instructors in a collaborative learning environment.</p>
94
+ <a href="register.html" class="mt-4 inline-flex items-center text-indigo-600 hover:text-indigo-500">
95
+ Register now
96
+ <i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
97
+ </a>
98
+ </div>
99
+ <div class="feature-card bg-white p-8 rounded-lg shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="200">
100
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
101
+ <i data-feather="monitor"></i>
102
+ </div>
103
+ <h3 class="mt-6 text-lg font-medium text-gray-900">Online Classes</h3>
104
+ <p class="mt-2 text-base text-gray-500">Learn from anywhere with our interactive online classes and dedicated tutor support.</p>
105
+ <a href="#contact" class="mt-4 inline-flex items-center text-indigo-600 hover:text-indigo-500">
106
+ Contact Tutor
107
+ <i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
108
+ </a>
109
+ </div>
110
+ <div class="feature-card bg-white p-8 rounded-lg shadow-md hover:shadow-xl transition duration-300" data-aos="fade-up" data-aos-delay="300">
111
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
112
+ <i data-feather="book"></i>
113
+ </div>
114
+ <h3 class="mt-6 text-lg font-medium text-gray-900">Hybrid Learning</h3>
115
+ <p class="mt-2 text-base text-gray-500">Combine the best of both worlds with our flexible hybrid learning options.</p>
116
+ <a href="register.html" class="mt-4 inline-flex items-center text-indigo-600 hover:text-indigo-500">
117
+ Learn more
118
+ <i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
119
+ </a>
120
+ </div>
121
+ </div>
122
+ </div>
123
+ </section>
124
+
125
+ <!-- Testimonials -->
126
+ <section class="py-16 px-4 sm:px-6 lg:px-8 bg-indigo-50">
127
+ <div class="max-w-7xl mx-auto">
128
+ <div class="text-center" data-aos="fade-up">
129
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">What Our Students Say</h2>
130
+ <p class="mt-4 max-w-2xl text-xl text-gray-600 mx-auto">Hear from our successful students about their learning experience</p>
131
+ </div>
132
+ <div class="mt-12 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
133
+ <div class="bg-white p-8 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="100">
134
+ <div class="flex items-center">
135
+ <div class="flex-shrink-0">
136
+ <img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/1" alt="Student">
137
+ </div>
138
+ <div class="ml-4">
139
+ <h4 class="text-lg font-medium text-gray-900">Ahmed Khan</h4>
140
+ <p class="text-indigo-600">Physics Student</p>
141
+ </div>
142
+ </div>
143
+ <p class="mt-4 text-gray-600">"The professors at AlFarooq Academy have an incredible way of explaining complex concepts. My grades improved significantly after joining."</p>
144
+ </div>
145
+ <div class="bg-white p-8 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="200">
146
+ <div class="flex items-center">
147
+ <div class="flex-shrink-0">
148
+ <img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/2" alt="Student">
149
+ </div>
150
+ <div class="ml-4">
151
+ <h4 class="text-lg font-medium text-gray-900">Fatima Ali</h4>
152
+ <p class="text-indigo-600">Mathematics Student</p>
153
+ </div>
154
+ </div>
155
+ <p class="mt-4 text-gray-600">"The online classes were so convenient and interactive. I never felt like I was missing out compared to physical classes."</p>
156
+ </div>
157
+ <div class="bg-white p-8 rounded-lg shadow-md" data-aos="fade-up" data-aos-delay="300">
158
+ <div class="flex items-center">
159
+ <div class="flex-shrink-0">
160
+ <img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/3" alt="Student">
161
+ </div>
162
+ <div class="ml-4">
163
+ <h4 class="text-lg font-medium text-gray-900">Omar Farooq</h4>
164
+ <p class="text-indigo-600">Chemistry Student</p>
165
+ </div>
166
+ </div>
167
+ <p class="mt-4 text-gray-600">"The hybrid option was perfect for my schedule. I could attend in person when possible and join online when I had other commitments."</p>
168
+ </div>
169
+ </div>
170
+ </div>
171
+ </section>
172
+
173
+ <!-- Contact Section -->
174
+ <section id="contact" class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
175
+ <div class="max-w-7xl mx-auto">
176
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8">
177
+ <div data-aos="fade-right">
178
+ <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">Contact Our Tutors</h2>
179
+ <p class="mt-3 text-xl text-gray-500">Have questions about our online classes? Reach out to our expert tutors directly.</p>
180
+ <div class="mt-8">
181
+ <div class="flex items-start">
182
+ <div class="flex-shrink-0">
183
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
184
+ <i data-feather="mail"></i>
185
+ </div>
186
+ </div>
187
+ <div class="ml-4">
188
+ <h3 class="text-lg font-medium text-gray-900">Email</h3>
189
+ <p class="mt-1 text-base text-gray-500">tutors@alfarooqacademy.com</p>
190
+ </div>
191
+ </div>
192
+ <div class="mt-6 flex items-start">
193
+ <div class="flex-shrink-0">
194
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
195
+ <i data-feather="phone"></i>
196
+ </div>
197
+ </div>
198
+ <div class="ml-4">
199
+ <h3 class="text-lg font-medium text-gray-900">Phone</h3>
200
+ <p class="mt-1 text-base text-gray-500">+92 300 1234567</p>
201
+ </div>
202
+ </div>
203
+ <div class="mt-6 flex items-start">
204
+ <div class="flex-shrink-0">
205
+ <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600">
206
+ <i data-feather="clock"></i>
207
+ </div>
208
+ </div>
209
+ <div class="ml-4">
210
+ <h3 class="text-lg font-medium text-gray-900">Hours</h3>
211
+ <p class="mt-1 text-base text-gray-500">Monday - Friday: 9:00 AM - 7:00 PM</p>
212
+ <p class="mt-1 text-base text-gray-500">Saturday: 10:00 AM - 4:00 PM</p>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ <div class="mt-12 lg:mt-0" data-aos="fade-left">
218
+ <div class="bg-white shadow-xl rounded-lg p-8">
219
+ <h3 class="text-lg font-medium text-gray-900">Send us a message</h3>
220
+ <form class="mt-6 space-y-6">
221
+ <div>
222
+ <label for="name" class="block text-sm font-medium text-gray-700">Your Name</label>
223
+ <div class="mt-1">
224
+ <input type="text" name="name" id="name" autocomplete="name" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md">
225
+ </div>
226
+ </div>
227
+ <div>
228
+ <label for="email" class="block text-sm font-medium text-gray-700">Email</label>
229
+ <div class="mt-1">
230
+ <input type="email" name="email" id="email" autocomplete="email" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md">
231
+ </div>
232
+ </div>
233
+ <div>
234
+ <label for="phone" class="block text-sm font-medium text-gray-700">Phone</label>
235
+ <div class="mt-1">
236
+ <input type="tel" name="phone" id="phone" autocomplete="tel" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md">
237
+ </div>
238
+ </div>
239
+ <div>
240
+ <label for="message" class="block text-sm font-medium text-gray-700">Message</label>
241
+ <div class="mt-1">
242
+ <textarea id="message" name="message" rows="4" class="py-3 px-4 block w-full shadow-sm focus:ring-indigo-500 focus:border-indigo-500 border-gray-300 rounded-md"></textarea>
243
+ </div>
244
+ </div>
245
+ <div>
246
+ <button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
247
+ Send Message
248
+ </button>
249
+ </div>
250
+ </form>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ </section>
256
+
257
+ <!-- Footer -->
258
+ <footer class="bg-gray-800 text-white py-12 px-4 sm:px-6 lg:px-8">
259
+ <div class="max-w-7xl mx-auto">
260
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
261
+ <div>
262
+ <h3 class="text-lg font-medium">AlFarooq Academy</h3>
263
+ <p class="mt-4 text-gray-400">Empowering students through quality education since 2010.</p>
264
+ <div class="mt-4 flex space-x-6">
265
+ <a href="#" class="text-gray-400 hover:text-white">
266
+ <i data-feather="facebook"></i>
267
+ </a>
268
+ <a href="#" class="text-gray-400 hover:text-white">
269
+ <i data-feather="twitter"></i>
270
+ </a>
271
+ <a href="#" class="text-gray-400 hover:text-white">
272
+ <i data-feather="instagram"></i>
273
+ </a>
274
+ <a href="#" class="text-gray-400 hover:text-white">
275
+ <i data-feather="linkedin"></i>
276
+ </a>
277
+ </div>
278
+ </div>
279
+ <div>
280
+ <h3 class="text-lg font-medium">Quick Links</h3>
281
+ <ul class="mt-4 space-y-2">
282
+ <li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
283
+ <li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
284
+ <li><a href="register.html" class="text-gray-400 hover:text-white">Register</a></li>
285
+ <li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
286
+ </ul>
287
+ </div>
288
+ <div>
289
+ <h3 class="text-lg font-medium">Courses</h3>
290
+ <ul class="mt-4 space-y-2">
291
+ <li><a href="#" class="text-gray-400 hover:text-white">Mathematics</a></li>
292
+ <li><a href="#" class="text-gray-400 hover:text-white">Physics</a></li>
293
+ <li><a href="#" class="text-gray-400 hover:text-white">Chemistry</a></li>
294
+ <li><a href="#" class="text-gray-400 hover:text-white">Biology</a></li>
295
+ </ul>
296
+ </div>
297
+ <div>
298
+ <h3 class="text-lg font-medium">Contact</h3>
299
+ <ul class="mt-4 space-y-2">
300
+ <li class="flex items-start">
301
+ <i data-feather="map-pin" class="h-5 w-5 text-gray-400 mr-2"></i>
302
+ <span class="text-gray-400">123 Education Street, Karachi, Pakistan</span>
303
+ </li>
304
+ <li class="flex items-center">
305
+ <i data-feather="mail" class="h-5 w-5 text-gray-400 mr-2"></i>
306
+ <span class="text-gray-400">info@alfarooqacademy.com</span>
307
+ </li>
308
+ <li class="flex items-center">
309
+ <i data-feather="phone" class="h-5 w-5 text-gray-400 mr-2"></i>
310
+ <span class="text-gray-400">+92 300 1234567</span>
311
+ </li>
312
+ </ul>
313
+ </div>
314
+ </div>
315
+ <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center">
316
+ <p class="text-gray-400">© 2023 AlFarooq Academy. All rights reserved.</p>
317
+ <div class="mt-4 md:mt-0">
318
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
319
+ <span class="mx-2 text-gray-600">|</span>
320
+ <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
321
+ </div>
322
+ </div>
323
+ </div>
324
+ </footer>
325
+
326
+ <script>
327
+ // Mobile menu toggle
328
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
329
+ const menu = document.getElementById('mobile-menu');
330
+ if (menu.classList.contains('hidden')) {
331
+ menu.classList.remove('hidden');
332
+ } else {
333
+ menu.classList.add('hidden');
334
+ }
335
+ });
336
+
337
+ // Form submission for contact
338
+ document.querySelector('form').addEventListener('submit', function(e) {
339
+ e.preventDefault();
340
+ alert('Thank you for your message! Our tutors will contact you soon.');
341
+ this.reset();
342
+ });
343
+ </script>
344
+ <script>AOS.init();</script>
345
+ <script>feather.replace();</script>
346
+ </body>
347
+ </html>