-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
177 lines (151 loc) · 5.78 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
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
<?php
include 'components/connection.php';
session_start();
if (isset($_SESSION['user_id'])) {
$user_id = $_SESSION['user_id'];
} else {
$user_id = '';
}
if (isset($_POST['layout'])) {
session_destroy();
header("location:login.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<title>MyWebsite -abot us </title>
</head>
<body>
<?php include './components/header.php'; ?>
<div class="main">
<div class="banner">
<h1>about us</h1>
</div>
<div class="title2">
<a href="home.php">home</a><span>about</span>
</div>
<div class="about-category">
<div class="box">
<img src="img/3.webp" alt="">
<div class="detail">
<span>coffee</span>
<h1>lemon green</h1>
<a href="view_products.php" class="btn">shop now</a>
</div>
</div>
<div class="box">
<img src="img/about.png" alt="">
<div class="detail">
<span>coffee</span>
<h1>lemon Teaname</h1>
<a href="view_products.php" class="btn">shop now</a>
</div>
</div>
<div class="box">
<img src="img/2.webp" alt="">
<div class="detail">
<span>coffee</span>
<h1>lemon Teaname</h1>
<a href="view_products.php" class="btn">shop now</a>
</div>
</div>
<div class="box">
<img src="img/1.webp" alt="">
<div class="detail">
<span>coffee</span>
<h1>lemon green</h1>
<a href="view_products.php" class="btn">shop now</a>
</div>
</div>
<section class="services">
<div class="title">
<img src="img/download.png" class="logo" alt="">
<h1>why choose us</h1>
<p>This is just ranodm text.</p>
</div>
<div class="box-container">
<div class="box">
<img src="img/icon2.png" alt="">
<div class="detail">
<h3>great savings</h3>
<p>Save big every order</p>
</div>
</div>
<div class="box">
<img src="img/icon1.png" alt="">
<div class="detail">
<h3>24*7 support</h3>
<p>one-on-one support</p>
</div>
</div>
<div class="box">
<img src="img/icon0.png" alt="">
<div class="detail">
<h3>gift vouchers</h3>
<p>vouchers on every festivals</p>
</div>
</div>
<div class="box">
<img src="img/icon.png" alt="">
<div class="detail">
<h3>world wide delivery</h3>
<p>dropship world wide</p>
</div>
</div>
</div>
</section>
<div class="about">
<div class="row">
<div class="img-box">
<img src="img/3.png" alt="">
</div>
<div class="detail">
<h1>visit our beautiful showroom!</h1>
<p>it is just random text for testing.</p>
<a href="view_products.php" class="btn">shop now</a>
</div>
</div>
</div>
<div class="testimonial-container">
<div class="title">
<img src="img/download.png" alt="">
<h1>what people say about us</h1>
<>this is just random text for testing.
</p>
</div>
<div class="container">
<div class="testimonial-item active">
<img src="img/01.jpg" alt="">
<h1>sara smit</h1>
<p>This is just random text.</p>
</div>
<div class="testimonial-item ">
<img src="img/02.jpg" alt="">
<h1>hary porter</h1>
<p>This is just random text.</p>
</div>
<div class="testimonial-item ">
<img src="img/03.jpg" alt="">
<h1>selena ansari</h1>
<p>This is just random text.</p>
</div>
<div class="left-arrow" onclick="nextSlide()"><i class="bx bx-left-arrow-alt"></i>
</div>
<div class="right-arrow" onclick="preSlide()"><i class="bx bx-right-arrow-alt"></i>
</div>
</div>
</div>
<?php include 'components/footer.php'; ?>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js"></script>
<script src="script.js"></script>
<?php include './components/alert.php'; ?>
</body>
</html>
<!-- 2:00:00 -->