-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsellphone.html
289 lines (233 loc) · 13.5 KB
/
sellphone.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sell Smartphones</title>
<link rel="apple-touch-icon" sizes="180x180" href="image/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="image/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="image/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<!-- css file -->
<link rel="stylesheet" href="css/sellphone.css">
<!-- font awesome icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<body>
<!-- main section -->
<div class="id">
<h1 style="text-align: center; padding-top: 5px; color: black;">Sell Smartphones</h1>
</div>
<!-- all categories -->
<section class="categories">
<div class="title-container">
<h1 id="title">Popular Sold Smartphones</h1>
<button type="button" id="item-btn">View All</button>
</div>
<div class="card">
<div class="item-container" id="0">
<div class="card-item">
<img src="images/redmiK20.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 8%;">Redmi K20 (Flame Red, 6GB RAM, 128GB Storage)</p>
<a href="sell-1.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
<!--h3 id="item-price">Price : $ 190</h3-->
</div>
<div class="item-container" id="1">
<div class="card-item" >
<img src="images/samGalaxynote20.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 5%;">Samsung Galaxy Note 20 (8GB RAM, 256GB Storage)</p>
<a href="sell-2.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="2">
<div class="card-item" >
<img src="images/oppofindX2.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">OPPO Find X2 (Ocean, 12GB RAM, 256GB Storage)</p>
<a href="sell-3.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="3">
<div class="card-item">
<img src="images/realmeX20pro.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Realme X50 Pro (Moss Green, 12GB RAM, 256GB Storage) </p>
<a href="sell-4.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
</div>
</section>
<!-- Redmi phones -->
<section class="categories">
<div class="title-container">
<h1 id="title">Xiaomi Redmi Devices</h1>
<button type="button" id="item-btn">View All</button>
</div>
<div class="card">
<div class="item-container" id="4">
<div class="card-item">
<img src="images/redminote8.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Redmi Note 8 (Neptune Blue, 4GB RAM, 64GB Storage)</p>
<a href="sell-5.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="5">
<div class="card-item">
<img src="images/redminote9.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Redmi Note 9 (Pebble Grey, 4GB RAM 64GB Storage)</p>
<a href="sell-6.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="6">
<div class="card-item">
<img src="images/redmi8.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Redmi 8A Dual (Sky White, 2GB RAM, 32GB Storage)</p>
<a href="sell-7.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="7">
<div class="card-item">
<img src="images/redmi9.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 10%;">Redmi 9 (Sporty Orange, 4GB RAM, 64GB Storage)</p>
<a href="sell-8.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
</div>
</section>
<!-- end of Redmi phones -->
<!-- Realme Phones -->
<section class="categories">
<div class="title-container">
<h1 id="title">Realme Smartphones</h1>
<button type="button" id="item-btn">View All</button>
</div>
<div class="card">
<div class="item-container" id="8">
<div class="card-item">
<img src="images/realme C11.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 9%;">Realme C11 (Rich Green, 32 GB) (2 GB RAM)</p>
<a href="sell-9.html" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="9">
<div class="card-item">
<img src="images/realmeNarzo.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Realme Narzo 20 (Victory Blue, 4 GB RAM, 128 GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="10">
<div class="card-item">
<img src="images/realme7i.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Realme 7i (Two Shades of Black 4 GB RAM /64 GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="11">
<div class="card-item">
<img src="images/realmeC15.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Realme C15 (Power Silver, 4GB RAM, 64GB Storage)</p>
</div>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
</div>
</section>
<!-- end of realme phones -->
<!-- Oppo Phones -->
<section class="categories">
<div class="title-container">
<h1 id="title">Oppo Smartphones</h1>
<button type="button" id="item-btn">View All</button>
</div>
<div class="card">
<div class="item-container" id="12">
<div class="card-item">
<img src="images/oppoA31.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Oppo A31 (Fantasy White, 6GB RAM, 128GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="13">
<div class="card-item">
<img src="images/oppA5s.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 9%;">OPPO A5S (Dark Black, 3GB RAM, 32GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="14">
<div class="card-item">
<img src="images/oppoF17.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">OPPO F17 Pro (Matte Black, 8GB RAM, 128GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="15">
<div class="card-item">
<img src="images/oppoA15.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">OPPO A15 (Dynamic Black, 3GB RAM, 32GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
</div>
</section>
<!-- end of oppo phones -->
<!-- samsung Phones -->
<section class="categories">
<div class="title-container">
<h1 id="title">Samsung Smarthones</h1>
<button type="button" id="item-btn">View All</button>
</div>
<div class="card">
<div class="item-container" id="16">
<div class="card-item">
<img src="images/samgalaxyM01.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Samsung Galaxy M01 (Blue, 3GB RAM, 32GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="17">
<div class="card-item">
<img src="images/samGalaxyM21.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Samsung Galaxy M21 (Black, 4GB RAM, 64GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="18">
<div class="card-item">
<img src="images/samsGalaxyNote20.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 6%;">Samsung Galaxy Note 20 (8GB RAM, 256GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
<div class="item-container" id="19">
<div class="card-item">
<img src="images/samGalaxys20+.jpg" alt="img" id="card-img">
<p id="item-name" style="padding: 0 0 9%;">Samsung Galaxy S20 +(8GB RAM, 256GB Storage)</p>
<a href="" style="padding: 5px; background-color: #7c73e6; width: 100px; height: 30px; color: white; border-radius: 12px;text-decoration: none;">Sell Now</a>
</div>
<i class="fa fa-shopping-cart" id="add-to-cart"></i>
</div>
</div>
</section>
<!-- end of samsung phones -->
<script src="/site.js"></script>
</body>
</html>