-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
236 lines (192 loc) · 9.92 KB
/
Copy pathstore.html
File metadata and controls
236 lines (192 loc) · 9.92 KB
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
<!DOCTYPE html>
<html>
<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>E commercial website</title>
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<meta name="description" content="This is the description">
<link rel="stylesheet" href="store.css"/>
<link rel="stylesheet" href="style.css"/>
<script src="store.js" async></script>
</head>
<body>
<!-- header section starts -->
<header class="header">
<div class="header-1">
<a href="#" class="logo"> <i class="fas fa-book"></i> bookly </a>
<form action="" class="search-form">
<input type="search" name="" placeholder="search here..." id="search-box">
<label for="search-box" class="fas fa-search"></label>
</form>
<div class="icons">
<div id="search-btn" class="fas fa-search"></div>
<a href="store.html" class="fas fa-shopping-cart"></a>
<a href="login.html" class="fas fa-user"></a>
</div>
</div>
<div class="header-2">
<nav class="navbar">
<a href="index.html">Home</a>
<a href="login.html">Sign up</a>
<a href="store.html">Book Store</a>
</nav>
</div>
</header>
<!-- header section ends -->
<section class="container content-section">
<div class="product-intro">
<h1>New <span> Collections </span></h1>
<p>Order now your book from your favourite writer and get it to you within 3 days. </p>
</div>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">Too big to fail</span>
<img class="shop-item-image" src="image/book-16.jpg">
<h1>Popular novels <h1>
<div class="shop-item-details">
<span class="shop-item-price">$5</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Rich dad poor dad</span>
<img class="shop-item-image" src="image/book-11.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$6</span>
<button class="shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">The millionaire next door</span>
<img class="shop-item-image" src="image/book-12.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$7</span>
<button class="shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Against all god</span>
<img class="shop-item-image" src="image/book-13.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$8</span>
<button class="shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">The richest man in babylon</span>
<img class="shop-item-image" src="image/book-14.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$9</span>
<button class="shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">The science of getting rich</span>
<img class="shop-item-image" src="image/book-15.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$10</span>
<button class="shop-item-button"type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Too big to fail</span>
<img class="shop-item-image" src="image/book-16.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$11</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Total Money makeover</span>
<img class="shop-item-image" src="image/book-17.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$12</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class="container content-section">
<div class="product-intro">
<h1> New <span> Arrivals </span></h1>
</div>
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">The intelligent investor</span>
<img class="shop-item-image" src="image/book-18.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$13</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Total money takeover</span>
<img class="shop-item-image" src="image/book-19.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$14</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Red Notice</span>
<img class="shop-item-image" src="image/book-20.jpg">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$15</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Half Girlfriend</span>
<img class="shop-item-image" src="image/book-9.png">
<h1>Popular novels</h1>
<div class="shop-item-details">
<span class="shop-item-price">$16</span>
<button class="shop-item-button" type="button">ADD TO CART</button>
</div>
</div>
</div>
</section>
<section class="container content-section">
<h2 class="section-header">CART</h2>
<div class="cart-row">
<span class="cart-item cart-header cart-column">ITEM</span>
<span class="cart-price cart-header cart-column">PRICE</span>
<span class="cart-quantity cart-header cart-column">QUANTITY</span>
<span class="cart-quantity cart-header cart-column">GST price</span>
</div>
<div class="cart-items">
</div>
<div class="cart-total">
<strong class="cart-total-title">Total</strong>
<span class="cart-total-price">$0</span>
</div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</section>
<!-- footer -->
<section class="footer">
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
<a href="#" class="fab fa-pinterest"></a>
</div>
<div class="credit"> created by <span>Gaurav Saini</span> | all rights reserved! </div>
</section>
<script src="store.js"></script>
</body>
</html>