-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
960 lines (223 loc) · 12 KB
/
about.php
File metadata and controls
960 lines (223 loc) · 12 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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<?php include('server.php') ?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous" />
<title>TANT SCHOOL</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary" style="background-image: linear-gradient(to top, rgba(190, 45, 219, 0.733), rgb(240, 66, 225));">
<a class="navbar-brand" href="index.php">TantSchool</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="courses.php">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" href="exercises.php">Practice Exercises</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.php">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.php">Contact Us</a>
</li>
</ul>
<?php if (isset($_SESSION['username'])) : ?>
<a href="userprofile.php">
<p style="color: white;">Welcome <strong><?php echo $_SESSION['username']; ?></strong></p></a>
<a href="exercises.php?logout='1'" class="btn btn-info transition-hover btn-lg ml-3">Logout</a>
<?php else: ?>
<form class="form-inline my-2 my-lg-0">
<a href="login.php" class="btn btn-primary transition-hover btn-lg ml-3">Sign In</a>
<a href="register.php" class="btn btn-success transition-hover btn-lg ml-3">Sign Up</a>
<button class="btn header-btn-collapse-nav active collapsed" data-toggle="collapse"
data-target=".header-nav-main nav" aria-expanded="false">
</button>
</form>
<?php endif ?>
</div>
</nav>
<br><br>
<div class="container" style="background-color:rgba(228, 181, 238, 0.822);width:100%;padding:2%;text-align:center;">
<div class="row justify-content-md-center">
<div class="mbr-white col-md-10" >
<h3 class="mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style display-2">About Us</h3>
<h5 class="mbr-section-title align-center mbr-bold pb-3 mbr-fonts-style display-5">
TANtSchool is an educational website for learning web technologies online.
Content includes tutorials and references relating to HTML, CSS, Python and PHP.
<br>
TANTSchool is named after its developers namely:
<ul style="list-style: none;">
<li><strong>T</strong>OOBA</li>
<li><strong>A</strong>YESHA</li>
<li><strong>N</strong>AMEERA</li>
<li><strong>T</strong>OOBA</li>
</ul>
</h5>
</div>
</div>
</div>
<br><br>
<section class="mbr-section article content1 cid-r7cw9uSKOn" id="content1-d" >
<div class="container" style="text-align:left;">
<div class="media-container-row">
<div class="mbr-text col-12 col-md-12" styel="font-size:small;">
<h1 class="mb-3 mbr-fonts-style display-5">Course Plan</h1>
</div>
</div>
</div>
</section>
<section class="mbr-section article content12 cid-r7cx92Ejvt" id="content6-f">
<div class="container" style="text-align:left;">
<div class="media-container-row">
<div class="mbr-text counter-container col-12 col-md-8 mbr-fonts-style pt-5">
<div class="mb-5">
<h3 class="mb-3 mbr-fonts-style display-5">01. Lectures</h3>
<p class="mbr-fonts-style display-7">We'll teach you about HTML, CSS, Python, and PHP with enough contents with their accurate syntax. Also, we'll learn more about their functionalities and will review many code examples.</p>
</div>
<div class="mb-5">
<h3 class="mb-3 mbr-fonts-style display-5">02. Video Lectures</h3>
<p class="mbr-fonts-style display-7">Our video lectures will also be available to you so that if their had been any confusion in Static learning than they could watch the videos to clear their concepts.</p>
</div>
<div class="mb-5">
<h3 class="mb-3 mbr-fonts-style display-5">03. Final Quiz</h3>
<p class="mbr-fonts-style display-7">If you think that you had learn a particular language very well then you could be able to check your programming skills through our free of cost quiz given at the end of every language.</p>
</div>
</div>
</div>
</div>
</section>
<br><br><br>
<section class="features11 cid-r7iylV3OqF mbr-parallax-background" id="features11-k" style="z-index: 0; background-image: none; position: relative;">
<div class="mbr-overlay" style="opacity: 0.5;">
</div>
<div class="container" style="background-color:rgba(228, 181, 238, 0.822);width:100%;padding:2%;">
<div class="text-content">
<div class="media-container-row ">
<div class="col-md-12 mb-4">
<h3 class="mb-4 mbr-fonts-style mbr-section-title display-2">Get enroll for 0 PKR!</h3>
<h2 class="mb-4 mbr-fonts-style display-7">You'll get all the additional materials of Quizzes after getting enroll for free. </h2>
<div class="mbr-section-btn"><a class="btn btn-md btn-bgr btn-warning display-4" href="login.php">Enroll</a></div>
</div>
</div>
</div>
</div>
</div></section>
<br><br><br><br><br><br><br>
<section class="py-8 py-md-11 border-bottom">
<div class="container">
<div class="row">
<div class="col-12 col-md-4 aos-init aos-animate" data-aos="fade-up">
<div class="icon text-primary mb-3">
<img src="1.png" width="50" height="50" viewBox="0 0 50 50">
</div>
<h3>
Learn the latest skills
</h3>
<p class="text-muted mb-6 mb-md-0">
TantSchool is built to make your learning easier. You can like programming languages like HTML, CSS,
Python, and more.
</p>
</div>
<div class="col-12 col-md-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="50">
<div class="icon text-primary mb-3">
<img src="2.png" width="50" height="50" viewBox="0 0 50 50">
</div>
<h3>
Get ready for a career
</h3>
<p class="text-muted mb-6 mb-md-0">
in high-demand fields like Web Development, Python Development and many more.
</p>
</div>
<div class="col-12 col-md-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="100">
<div class="icon text-primary mb-3">
<img src="3.png" width="50" height="50" viewBox="0 0 50 50">
</div>
<h3>
Upskill your organization
</h3>
<p class="text-muted mb-6 mb-md-0">
with our training and practicing programs
</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</section>
<br><br><br><br><br><br>
<footer class="border-top">
<div class="container pt-10 pb-9">
<div class="row">
<div class="col-sm-5">
<img alt="TantSchool" src="school.png" class="mb-4" width="80">
<p vertical-align="middle">TantSchool provides the best possible online learning experience.</p>
<div class="social">
<a class="social-facebook m-0" href="https://www.facebook.com/medlyncs"><i
class="fab fa-facebook-f"></i></a>
<a class="social-instagram m-0" href="https://www.instagram.com/medlyncs"><i
class="fab fa-instagram"></i></a>
</div>
</div>
<div class="col-sm-2">
<h3 class="h6 mb-3">
Quick Links
</h3>
<ul class="list-unstyled mb-0 text-white-50">
<li><a class="m-list--link" style="color: purple"href="index.php">Home</a></li>
<li><a class="m-list--link" style="color: purple"href="about.php">About Us</a></li>
</ul>
</div>
<div class="col-sm-2">
<h3 class="h6 mb-3">
Service
</h3>
<ul class="list-unstyled mb-0">
<li><a class="m-list--link" style="color: purple" href="exercises.php">Features</a></li>
<li><a class="m-list--link" style="color: purple" href="courses.php">Packages</a></li>
<li><a class="m-list--link" style="color: purple"href="login.php">Sign in</a> </li>
</ul>
</div>
<div class="col-sm-3">
<h3 class="h6 mb-3">
<a class="m-list--link"style="color: purple" href="contact-us"> Contact Us </a>
</h3>
<strong class="" style="color: purple">Email</strong><br>
<a class="m-link"style="color: purple" href="mailto:tantschool.info@gmail.com">tantschool.info@gmail.com</a>
</div>
</div>
</div>
<!-- Copyright -->
<div class="container m-gab-1 border-top">
<div class="row">
<div class="col-md-12 text-center">
<p><span class="fs-17">©</span> 2020 <span class="m-link" style="color: purple">TantSchool</span>. All rights reserved.</p>
</div>
</div>
</div>
<!-- End Copyright -->
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"
integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI"
crossorigin="anonymous"></script>
</body>
</html>