-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
48 lines (47 loc) · 1.91 KB
/
about.php
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
<?php
include_once 'class/db_config.class.php';
include_once 'class/declare.class.php';
include_once 'class/king.class.php';
include_once 'ajax/cookie_request.php';
$king = new king;
?>
<?php
$title = "About Us | Fyores";
$keywords = "Fyores, A place where learners are shaped!, learning platform for skillful aspirants";
$desc = "Fyores lets you meet, explore, message and share instructors in a better way and learn the assets in various form. A commom platform for your niche to learn, compete and improve your performance ultimately shaping yourself as a great warrior.";
?>
<?php include_once 'includes/header.php'; ?>
<?php include_once 'includes/heading.php'; ?>
<link href="assets/css/components/custom-modal.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.about {
text-align: center;
}
.about img {
margin-top: 50px;
max-width: 350px;
}
.about p {
margin-top: 30px;
padding: 0px 250px;
text-align: justify;
}
@media (max-width: 575px) {
.about img {
max-width: 180px;
}
.about p {
margin-top: 30px;
padding: 0px 15px;
text-align: justify;
}
}
</style>
<div id="content" class="main-content about" style="margin-left:0px;">
<img src="images/about.png">
<p style="font-size:18px;color:#000;font-weight:600;">If you are someone who wants to learn something of your interest beyond education, Fyores makes it easy to search activities and connect with the instructors.
At Fyores we believe that everyone should have an access to the best local and international resources</p>
</div>
<?php include_once 'includes/footer.php'; ?>
<?php include_once 'includes/login_system_footer.php'; ?>