-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaboutUs.php
130 lines (106 loc) · 4.88 KB
/
aboutUs.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
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
<?php
include 'DBconnection.php';
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glamful</title>
<!-- CSS File -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="aboutUs.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body>
<header class="header" id="header">
<!-- <div id="logo">-->
<a href="index.php" accesskey="h"><img id="LOGO" src="LOGO.png" height="60" alt="logo"></a>
<a class="logo" href="index.php" accesskey="h">
<!-- <img src="img/logo.png">
</div>-->
<div class="navbar">
<nav class="nav-menu" id="nav-menu">
<ul class="nav-list">
<li><a href="index.php" class="nav-link">home</a></li>
<li><a href="aboutUs.php" class="nav-link active">about Us</a></li>
<li><a href="categories.php" class="nav-link">Search for clinics</a></li>
</ul>
</nav>
<div class="nav-toggle" id="nav-toggle">
<i class="fas fa-bars"></i>
</div>
</div>
</header>
<!-- Start Home Section -->
<section class="home">
<div class="breadcrumb">
<a href="index.php" >Home </a> >>
<a href="aboutUs.php"> About Us </a> >>
</div>
<div class="container">
<div class="home-img">
<img src="img/22.png">
</div>
<div class="home-content">
<h1>About Us..</h1>
<p>Glamful is a review website, that allows people who are interested in beauty to share their reviews on beauty clinics in Riyadh with others,
or even explore other people's reviews on beauty clinics.</p>
</div>
<section class="package" id="package" style="margin-top: -60px;">
<div calss="VM" style="display: flex;">
<img src="img/mission.png" alt="" height="150" width="150" style="margin-left:100px; margin-top:-30px;">
<p style="margin-top: 50px;">Our mission is to gather people's experiences and reviews on Riyadh beauty clinics just in one place,
to save clients time and effort while searching for a suitable clinic.</p>
</div>
</section>
<section class="package" id="package" style="margin-top: 30px;">
<div calss="VM" style="display: flex;">
<img src="img/vision.png" alt="" height="150" width="150" style="margin-left:100px; margin-top:-30px;">
<p style="margin-top: 50px;">Our vision is Improving clients experience in finding the most suitable beauty clinic in Riyadh through exploring clients reviews on them. </p>
</div>
</section>
</div>
</section>
<!-- End Home Section -->
<!-- Start About Section -->
<section class="about" id="about">
<div class="container">
</div>
</section>
<!-- End About Section -->
<!-- Start Services Section -->
<section class="services" id="services">
</section>
<!-- End Services Section -->
<!-- Start Package Section -->
<!-- End Package Section -->
<!-- Start Footer Section -->
<footer class="footer" id="contact">
<div class="footer-list">
<div class="footer-data">
<h2>Contact Us:</h2>
<div class="fott"><img src="img/phonne.png" width="25px;" height="25px;"><p> 011 285 1609</p></div>
<div class="fott"> <img src="img/mail.jpg" width="25px;" height="25px;"><p> GLAMFUL@gmail.com</p></div>
</div>
<div class="footer-data">
<h2 style="margin-top: -27px;">Social Media:</h2>
<div class="footer-data-social">
<a href=""><i class="fab fa-facebook"></i></a>
<a href=""><i class="fab fa-instagram"></i></a>
<a href=""><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<div class="copy">
<p>© 2022 All Rights Reserved, GLAMFUL®</p>
</div>
</footer>
<!-- End Footer Section -->
<!-- Javascript File -->
<script src="main.js"></script>
</body>
</html>