-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
87 lines (81 loc) · 3.73 KB
/
about.php
File metadata and controls
87 lines (81 loc) · 3.73 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
<?php
require_once 'include/header.php';
?>
<!--FEATURES SECTION-->
<header class="about-header pt-5 mt-4" data-aos="fade-in">
<div class="about-heading d-flex justify-content-center">
<h1>FEATURES:</h1>
</div>
</header>
<section class="feature-area fix">
<div class="container-fluid">
<div class="row">
<div class="right-content col-lg-6" data-aos="fade-right">
<img src="assets/img/blog/about3.png" alt="feature-image" class="img-fluid feature-img">
</div>
<div class="left-content col-lg-6 text-left" data-aos="zoom-in">
<h2 class="feature-heading mb-4">Learner outcomes on courses you will take:</h2>
<div class="container-fluid ">
<div class="row">
<div class="features col-lg-10 text-left mb-4">
<p><span>✓</span> To provide knowledge with ease.</p>
</div>
</div>
<div class="row">
<div class="features col-lg-10 text-left mb-4">
<p><span>✓</span> To provide content which is pertinent to the course they wish to learn about.</p>
</div>
</div>
<div class="row">
<div class="features col-lg-10 text-left mb-4">
<p><span>✓</span> New approaches to tackle different tasks effectively.</p>
</div>
</div>
<div class="row">
<div class="features col-lg-10 text-left mb-4">
<p><span>✓</span> To prepare our students for the professional aspect of life.</p>
</div>
</div>
<div class="row">
<div class="features col-lg-10 text-left mb-4">
<p><span>✓</span> Techniques to engage effectively with vulnerable children and young people.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--About section-->
<header class="about-header pt-5 mt-4" data-aos="fade-in">
<div class="about-heading d-flex justify-content-center">
<h1>ABOUT US:</h1>
</div>
</header>
<section class="about" id="about-us" data-aos="zoom-in">
<div class="container mb-5">
<div class="row gx-0">
<div class=" who col-lg-6 d-flex flex-column justify-content-center" id="who">
<h3>Who We Are</h3>
<h2>Two individuals with a goal in mind to provide free education to those who need it.</h2>
<p>
During this pandemic, we wish to provide a means of relief in these hard times to students,
as we have realised that the education system has not migrated to online systems properly.
Relearn comes to play in this situation. We wish to assist the education system to go online
as the pandemic has proved that in these times our previous system are not that sustainable.
</p>
<div class="hero-btn">
<a class="btn btn-primary px-4" href="about.php" role="button">Learn more</a>
</div>
</div>
<div class="about-img col-lg-6 px-0">
<img src="assets/img/about.jpg" class="img-fluid" alt="about-img">
</div>
</div>
</div>
</section>
<!--About section end-->
<?php
require_once 'include/footer.php';
?>