-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
359 lines (353 loc) Β· 13.7 KB
/
Copy pathindex.html
File metadata and controls
359 lines (353 loc) Β· 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>FindMyTutor</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<div class="logo">FindMyTutor</div>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="search_teachers.html">Teachers</a></li>
<li><a href="login_page.html">Login</a></li>
<li><a href="register_student_teacher.html">Register</a></li>
</ul>
</nav>
<header>
<h1>Find The Best Tutors Near You</h1>
<p>
Connect with experienced tuition teachers in your area for online or
offline classes.
</p>
<div class="search-bar">
<input type="text" id="location" placeholder="Enter your location" />
<input type="text" id="subject" placeholder="Subject (e.g. Math, Science)" />
<button onclick="searchTutors()">Search</button>
</div>
<div class="popular-searches">
<span>Popular:</span>
<a href="#">Maths in Delhi</a>
<a href="#">Physics in Mumbai</a>
<a href="#">Coding (Online)</a>
<a href="#">English in Bangalore</a>
</div>
</header>
<main>
<h2>Top Tutors Near You</h2>
<div class="tutor-cards" id="tutorCardContainer">
</div>
</main>
<section class="trusted-platform">
<h2>A Platform Trusted by Students</h2>
<p>
FindMyTutor aims to transform not just through words, but provide
results with numbers!
</p>
<div class="stats-cards">
<div class="stat-card" style="background: #fff3e0">
<div class="stat-number glow" data-target="15000000">0</div>
<div class="stat-label">Happy Students</div>
</div>
<div class="stat-card" style="background: #ffe6e6">
<div class="stat-number glow" data-target="24000">0</div>
<div class="stat-label">Mock Tests</div>
<div class="stat-img">
</div>
</div>
<div class="stat-card" style="background: #e3f7ff">
<div class="stat-number glow" data-target="14000">0</div>
<div class="stat-label">Video Lectures</div>
</div>
<div class="stat-card" style="background: #ede7ff">
<div class="stat-number glow" data-target="80000">0</div>
<div class="stat-label">Practice Papers</div>
</div>
</div>
</section>
<section class="reviews-section">
<h2>Students Speak</h2>
<div class="reviews-slider-wrapper">
<button class="slider-btn left" id="sliderLeftBtn">‹</button>
<div class="reviews-slider" id="reviewsSlider">
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Aarohi Sharma" />
<div>
<span class="review-name">Aarohi Sharma</span>
<span class="review-title">Maths made easy!</span>
</div>
</div>
<p class="review-text">
I never thought I could enjoy maths, but my tutor made it so
simple and fun. My grades improved a lot. Highly recommended!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">12</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">3</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Rohan Mehta" />
<div>
<span class="review-name">Rohan Mehta</span>
<span class="review-title">Best English teacher</span>
</div>
</div>
<p class="review-text">
The English classes were interactive and engaging. I scored 95% in
my boards. Thank you FindMyTutor!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">8</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">1</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Sneha Verma" />
<div>
<span class="review-name">Sneha Verma</span>
<span class="review-title">Science is fun now</span>
</div>
</div>
<p class="review-text">
My science tutor explained every concept with real-life examples.
Now I love studying science!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">15</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">2</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Amit Roy" />
<div>
<span class="review-name">Amit Roy</span>
<span class="review-title">Great for commerce</span>
</div>
</div>
<p class="review-text">
The commerce teacher cleared all my doubts and helped me score
distinction in accounts and business studies.
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">10</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">1</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Divya Kaur" />
<div>
<span class="review-name">Divya Kaur</span>
<span class="review-title">Biology topper!</span>
</div>
</div>
<p class="review-text">
Thanks to FindMyTutor, I found the best biology teacher. The notes
and tests were very helpful.
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">9</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">2</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/men/51.jpg" alt="Karan Singh" />
<div>
<span class="review-name">Karan Singh</span>
<span class="review-title">Coding confidence</span>
</div>
</div>
<p class="review-text">
I learned Python and web development from scratch. Now I can build
my own projects. Super happy!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">7</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">0</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/women/12.jpg" alt="Meena Joshi" />
<div>
<span class="review-name">Meena Joshi</span>
<span class="review-title">Hindi made simple</span>
</div>
</div>
<p class="review-text">
My Hindi teacher made grammar so easy. I scored highest in my
class. Thank you!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">11</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">1</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/men/29.jpg" alt="Suresh Patel" />
<div>
<span class="review-name">Suresh Patel</span>
<span class="review-title">Quick doubt solving</span>
</div>
</div>
<p class="review-text">
Whenever I had a doubt, my tutor was always available. The support
is amazing!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">6</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">0</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/women/21.jpg" alt="Anjali Nair" />
<div>
<span class="review-name">Anjali Nair</span>
<span class="review-title">Flexible timings</span>
</div>
</div>
<p class="review-text">
I could schedule classes as per my convenience. Perfect for busy
students like me.
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">13</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">2</span>
</button>
</div>
</div>
<div class="review-card">
<div class="review-header">
<img src="https://randomuser.me/api/portraits/men/61.jpg" alt="Ravi Kumar" />
<div>
<span class="review-name">Ravi Kumar</span>
<span class="review-title">Affordable & quality</span>
</div>
</div>
<p class="review-text">
Best platform for quality tuition at affordable rates. Highly
recommend to everyone!
</p>
<div class="review-actions">
<button class="like-btn" onclick="likeReview(this)">
π <span class="like-count">5</span>
</button>
<button class="comment-btn" onclick="commentReview(this)">
π¬ <span class="comment-count">1</span>
</button>
</div>
</div>
</div>
<button class="slider-btn right" id="sliderRightBtn">›</button>
</div>
</section>
<footer class="site-footer">
<div class="footer-main">
<div class="footer-col">
<h4>OUR APP</h4>
<p>FindMyTutor: Tution Teacher Finder</p>
<a href="#"><img src="https://upload.wikimedia.org/wikipedia/commons/7/78/Google_Play_Store_badge_EN.svg"
alt="Get it on Google Play" class="play-badge" /></a>
</div>
<div class="footer-col">
<h4>POPULAR SUBJECTS</h4>
<ul>
<li><a href="#">Maths Tuition</a></li>
<li><a href="#">Science Tuition</a></li>
<li><a href="#">English Tuition</a></li>
<li><a href="#">Commerce Tuition</a></li>
<li><a href="#">Computer Coding</a></li>
<li><a href="#">Spoken English</a></li>
</ul>
</div>
<div class="footer-col">
<h4>CLASSES & BOARDS</h4>
<ul>
<li><a href="#">CBSE Tuition</a></li>
<li><a href="#">ICSE Tuition</a></li>
<li><a href="#">State Board Tuition</a></li>
<li><a href="#">Class 1-5</a></li>
<li><a href="#">Class 6-8</a></li>
<li><a href="#">Class 9-10</a></li>
<li><a href="#">Class 11-12</a></li>
</ul>
</div>
<div class="footer-col">
<h4>CONTACT US</h4>
<p>
FindMyTutor Pvt. Ltd.<br />
Bakshi Ka Talab,<br />
Lucknow, Uttar Pradesh 226201<br />
<a href="mailto:support@findmytutor.com" class="footer-mail">support@findmytutor.com</a>
</p>
<div class="footer-social">
<a href="#"><img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/youtube.svg"
alt="YouTube" /></a>
<a href="#"><img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/facebook.svg"
alt="Facebook" /></a>
<a href="#"><img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/twitter.svg"
alt="Twitter" /></a>
<a href="#"><img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/maildotru.svg"
alt="Email" /></a>
</div>
</div>
</div>
<div class="footer-links">
<a href="#">About Us</a>
<a href="#">Authors</a>
<a href="#">Contact Us</a>
<a href="#">FAQs</a>
<a href="#">Terms and Conditions</a>
<a href="#">Privacy Policy</a>
<a href="#">Sitemap</a>
<a href="#">Careers</a>
<span class="footer-copy">FindMyTutor © 2025</span>
</div>
</footer>
<script src="script.js"></script>
<script src="data.js"></script>
</html>