-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
188 lines (139 loc) · 5.72 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
178
179
180
181
182
183
184
185
186
187
188
<?php
@include 'config.php';
session_start();
$user_id = $_SESSION['user_id'];
if(!isset($user_id)){
header('location:login.php');
}
?>
<!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>about</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- custom admin css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<?php @include 'header.php'; ?>
<section class="heading">
<h3>about us</h3>
<p> <a href="home.php">home</a> / about </p>
</section>
<section class="about">
<div class="flex">
<div class="image">
<img src="images/about-image1.jpg" alt="">
</div>
<div class="content">
<h3>why choose us?</h3>
<p>Our point is to give significant, charming, and animating substance to youngsters who go much past their normal course books. With this point of view, we treat each book as a work of adoration.</p>
<a href="shop.php" class="btn">shop now</a>
</div>
</div>
<div class="flex">
<div class="content">
<h3>what we provide?</h3>
<p>The wide scope of books offered by us incorporates fantasies, moral stories, showed storybooks, reference books, general learning books, sentence structure books, shading books, action books, sticker books, and more.</p>
<a href="contact.php" class="btn">contact us</a>
</div>
<div class="image">
<img src="images/about-image2.jpg" alt="">
</div>
</div>
<div class="flex">
<div class="image">
<img src="images/about-image3.jpg" alt="">
</div>
<div class="content">
<h3>who we are?</h3>
<p>This BookStore is a meta-search engine for comparing books prices and know availability across all popular Indian book stores.</p>
<a href="#reviews" class="btn">clients reviews</a>
</div>
</div>
</section>
<section class="reviews" id="reviews">
<h1 class="title">client's reviews</h1>
<div class="box-container">
<div class="box">
<img src="images/profile.png" alt="">
<p>Nice book with all major indian mythology stories together.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>USER 1</h3>
</div>
<div class="box">
<img src="images/profile.png" alt="">
<p>A good moral story for youthful mind. A must read story for everyone. Recommended for understanding life in a better way.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>USER 2</h3>
</div>
<div class="box">
<img src="images/profile.png" alt="">
<p>The book covers the entire Ramayana in a really descriptive yet concise way. Great book for kids to read and learn about the e Ramayana.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>USER 3</h3>
</div>
<div class="box">
<img src="images/profile.png" alt="">
<p>Very nicely deted story of Mahabharat with key events highlighted. Recommended for children and parents to read at leisure. Ciao !</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>USER 4</h3>
</div>
<div class="box">
<img src="images/profile.png" alt="">
<p>Superb novel so many things learn to short time, and if you are interested for mahabharata this book help to learn new way of learning</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>USER 5</h3>
</div>
<div class="box">
<img src="images/profile.png" alt="">
<p>There is no better way than this to introduce Indian Es to children. Written in conversational mode with pixtures.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
<h3>USER 6</h3>
</div>
</div>
</section>
<?php @include 'footer.php'; ?>
<script src="js/script.js"></script>
</body>
</html>