-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
262 lines (228 loc) · 13.7 KB
/
index.html
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<!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, initial-scale=1.0">
<title>Bookstore</title>
<link rel="stylesheet" href="port.css">
<link rel="stylesheet" href="fonts.css">
</head>
<body class="w3-light-grey" style="background-color: black;">
<!-- Sidebar/menu -->
<nav class="w3-sidebar w3-bar-block w3-black w3-animate-right w3-top w3-text-light-grey w3-large"
style="z-index: 3; width: 250px; font-weight: bold; display: none; right: 0;" id="mySidebar">
<a href="javascript:void()" onclick="w3_close()" class="w3-bar-item w3-button w3-center w3-padding-32">CLOSE</a>
<a href="#" onclick="w3_close()" class="w3-bar-item w3-button w3-center w3-padding-16">BOOKSTORE</a>
<a href="#about" onclick="w3_close()" class="w3-bar-item w3-button w3-center w3-padding-16">ABOUT US</a>
<a href="#contact" onclick="w3_close()" class="w3-bar-item w3-button w3-center w3-padding-16">CONTACT US</a>
</nav>
<!-- Top menu on small screens -->
<header class="w3-container w3-top w3-white w3-xlarge w3-padding-16">
<span class="w3-left w3-padding">BOOKSTORE</span>
<a href="javascript:void(0)" class="w3-right w3-button w3-white" onclick="w3_open()">☰</a>
</header>
<!-- Overlay effect when opening sidebar on small screens -->
<div class="w3-overlay w3-animate-opacity" onclick="w3_close()" style="cursor: pointer" title="close side menu"
id="myOverlay"></div>
<!-- !PAGE CONTENT! -->
<div class="w3-main w3-content" style="max-width: 1600px; margin-top: 83px">
<div class="w3-row w3-grayscale-min">
<!-- First row of books -->
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/41ahcNgvN4L.jpg" style="width: 100%" onclick="onClick(this)" alt="But the Morning will come">
<p>Every Morning sun rises with us </p>
<p>Price: $10.99</p>
</div>
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/41eavpJVA3L._AC_UF1000,1000_QL80_.jpg" style="width: 100%" onclick="onClick(this)" alt="So Long See You Tommorow">
<p>So long dont miss this book</p>
<p>Price: $12.99</p>
</div>
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/418S0KtkxbL._AC_UF1000,1000_QL80_.jpg" style="width: 100%" onclick="onClick(this)" alt="Starting out in the evenning">
<p>Evennings with these books</p>
<p>Price: $9.99</p>
</div>
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/418olkWtSfL.jpg" style="width: 110%" onclick="onClick(this)" alt="New World in the Morning">
<p>New World out there</p>
<p>Price: $14.99</p>
</div>
<!-- Additional row of books -->
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/61Sl921RaKL._AC_UF1000,1000_QL80_.jpg" style="width: 100%" onclick="onClick(this)" alt="Tommorow never Comes">
<p>So You Live only Today</p>
<p>Price: $11.99</p>
</div>
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/71cUpiY+eTL._AC_UF1000,1000_QL80_.jpg" style="width: 100%" onclick="onClick(this)" alt="The Novel of Tommorow">
<p>Novel Times....</p>
<p>Price: $8.99</p>
</div>
<div class="w3-quarter">
<img src="https://imgv2-2-f.scribdassets.com/img/word_document/356015301/original/8d47138edd/1695719166?v=1" style="width: 100%" onclick="onClick(this)" alt="All the Tommorows">
<p>All about the Future!!!!!</p>
<p>Price: $15.99</p>
</div>
<div class="w3-quarter">
<img src="https://m.media-amazon.com/images/I/418olkWtSfL.jpg" style="width: 100%" onclick="onClick(this)" alt="New world in the Morning 2">
<p>The best copy you will ever read</p>
<p>Price: $12.99</p>
</div>
</div>
<!-- Existing code below this line -->
</div>
<!-- Pagination -->
<div class="w3-center w3-padding-32">
<div class="w3-bar">
<a href="#" class="w3-bar-item w3-button w3-hover-black">«</a>
<a href="#" class="w3-bar-item w3-black w3-button">1</a>
<a href="#" class="w3-bar-item w3-button w3-hover-black">2</a>
<a href="#" class="w3-bar-item w3-button w3-hover-black">3</a>
<a href="#" class="w3-bar-item w3-button w3-hover-black">4</a>
<a href="#" class="w3-bar-item w3-button w3-hover-black">»</a>
</div>
</div>
<!-- Modal for full-size book images on click-->
<div id="modal01" class="w3-modal w3-black" style="padding-top: 0" onclick="this.style.display='none'">
<span class="w3-button w3-black w3-xlarge w3-display-topright">×</span>
<div class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image">
<p id="caption"></p>
</div>
</div>
<!-- About section -->
<div class="w3-container w3-dark-grey w3-center w3-text-light-grey w3-padding-32" id="about">
<h4><b style="font-size: x-large; color: white">About Us</b></h4>
<img src="https://images.squarespace-cdn.com/content/v1/557f3639e4b043c28125fd8d/1662473011809-WKGMAXIV8UG53Q9DCRV8/Banner-Zoe-logo_white.jpg?format=2500w" alt="About Us" class="w3-image w3-padding-32" width="500" height="600">
<div class="w3-content w3-justify" style="max-width: 600px">
<h4>Our Bookstore</h4>
<p style="font-size: 17px;">Welcome to our book-selling website! We offer a wide range of books in various genres, from fiction to non-fiction. Our mission is to provide you with quality reading material at affordable prices. Whether you're a bookworm or just looking for something new to read, we've got something for everyone.</p>
<p>Contact us for any book recommendations or inquiries.</p>
<p>Email: [email protected]</p>
<p>Phone: 7093993755</p>
<a href="https://wa.me/7093993755>"><img src="https://w7.pngwing.com/pngs/212/750/png-transparent-call-application-icon-whatsapp-computer-icons-whatsapp-logo-black-and-white-brand.png" width="50px" height="30px"
style="border-radius: 15px;"></a>
<a href="https://twitter.com"><img src="https://www.seekpng.com/png/detail/792-7924791_twitter-blue-twitter-icon-png.png" width="50px" height="30px"
style="border-radius: 15px;"></a>
<a href="https://www.instagram.com/reddy_aman_77/"><img src="https://mpng.subpng.com/20180705/yev/kisspng-computer-icons-logo-instagram-kit-harington-5b3deabec30e98.696019811530784446799.jpg" width="50px" height="30px"
style="border-radius: 15px;"></a>
<hr class="w3-opacity">
<hr class="w3-opacity">
<h4 class="w3-padding-16">OUR STATS</h4>
<p class="w3-wide">SPEED</p>
<div class="w3-white">
<div class="w3-container w3-padding-small w3-center w3-grey" style="width:85%">85%</div>
</div>
<p class="w3-wide">QUANTITY</p>
<div class="w3-white">
<div class="w3-container w3-padding-small w3-center w3-grey" style="width:90%">90%</div>
</div>
<p class="w3-wide">QUALITY</p>
<div class="w3-white">
<div class="w3-container w3-padding-small w3-center w3-grey" style="width:96%">96%</div>
</div>
<br>
<h4 class="w3-padding-16">How much we charge for Delivering Services</h4>
<div class="w3-row-padding" style="margin:0 -16px">
<div class="w3-half w3-margin-bottom">
<ul class="w3-ul w3-white w3-center">
<li class="w3-black w3-xlarge w3-padding-32">Basic</li>
<li class="w3-padding-16">LOW-COST DELIVERY FEE</li>
<li class="w3-padding-16">5-DAYS DELIVERY</li>
<li class="w3-padding-16">MAIL SUPPORT</li>
<li class="w3-padding-16">LIMITED ORDERS</li>
<li class="w3-padding-16">
<h2> ₹ 500</h2>
<span class="w3-opacity">per month</span>
</li>
<li class="w3-light-grey w3-padding-24">
<button class="w3-button w3-white w3-padding-large">Sign Up</button>
</li>
</ul>
</div>
<div class="w3-half">
<ul class="w3-ul w3-white w3-center">
<li class="w3-black w3-xlarge w3-padding-32">Pro</li>
<li class="w3-padding-16">FREE DELIVERY</li>
<li class="w3-padding-16">3-DAYS DELIVERY</li>
<li class="w3-padding-16">QUICK MAIL-SUPPORT</li>
<li class="w3-padding-16">UNLIMITED ORDERS</li>
<li class="w3-padding-16">
<h2> ₹ 900</h2>
<span class="w3-opacity">per month</span>
</li>
<li class="w3-light-grey w3-padding-24">
<button class="w3-button w3-white w3-padding-large">Sign Up</button>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Contact section -->
<div class="w3-container w3-light-grey w3-padding-32 w3-padding-large" id="contact">
<div class="w3-content" style="max-width: 600px">
<h4 class="w3-center"><b style="font-size: large;">Contact Us</b></h4>
<p style="font-size: medium;">Do you have any questions or need assistance? Please fill out the form below, and we'll get back to you as soon as possible.</p>
<form action="/contact_form.php" target="_blank">
<div class="w3-section">
<label>Name</label>
<input class="w3-input w3-border" type="text" name="Name" required>
</div>
<div class="w3-section">
<label>Email</label>
<input class="w3-input w3-border" type="text" name="Email" required>
</div>
<div class="w3-section">
<label>Message</label>
<input class="w3-input w3-border" type="text" name="Message" required>
</div>
<button type="submit" class="w3-button w3-block w3-black w3-margin-bottom">Send Message</button>
</form>
</div>
</div>
<!-- Footer -->
<footer class="w3-container w3-padding-32 w3-grey">
<div class="w3-row-padding">
<div class="w3-third">
<h3>LOCATION</h3>
<p style="font-size: 20px;">Aman's Bookstore, Reading City, Bookland lane, Hyderbad</p>
</div>
<div class="w3-third">
<h3>OUR SERVICES</h3>
<ul class="w3-ul">
<li class="w3-padding-16 w3-hover-black">
<img src="https://c8.alamy.com/comp/2RTR263/open-book-sketch-engraving-vector-illustration-scratch-board-style-imitation-2RTR263.jpg" class="w3-left w3-margin-right" style="width: 50px;">
<span class="w3-large">Book Sales</span><br>
<span>Wide range of books for all interests.</span>
</li>
<li class="w3-padding-16 w3-hover-black">
<img src="https://c8.alamy.com/comp/P3G95P/vector-artistic-drawing-illustration-of-old-closed-book-P3G95P.jpg" class="w3-left w3-margin-right" style="width: 50px;">
<span class="w3-large">Customer Support</span><br>
<span>Need assistance? We're here to help.</span>
</li>
</ul>
</div>
<div class="w3-third">
<h3>POPULAR GENRES</h3>
<p>
<span class="w3-tag w3-black w3-margin-bottom">Fiction</span>
<span class="w3-tag w3-dark-grey w3-small w3-margin-bottom">Mystery</span>
<span class="w3-tag w3-dark-grey w3-small w3-margin-bottom">Romance</span>
<span class="w3-tag w3-dark-grey w3-small w3-margin-bottom">Science Fiction</span>
<span class="w3-tag w3-dark-grey w3-small w3-margin-bottom">History</span>
<span class="w3-tag w3-dark-grey w3-small w3-margin-bottom">Self-Help</span>
<span class="w3-tag w3-dark-grey w3-small w3-margin-bottom">Biography</span>
</p>
</div>
</div>
</footer>
<div class="w3-black w3-center w3-padding-24">Made By <a href="https://www.linkedin.com/in/aman-reddy-pundru-272b53221/" title="Aman Reddy"
target="_blank" class="w3-hover-opacity">Aman Reddy</a></div>
<!-- End page content -->
</div>
<script src="amanport.js"></script>
</body>
</html>