-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsunscreens.html
410 lines (370 loc) · 23.5 KB
/
sunscreens.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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
<!DOCTYPE html>
<html lang="en">
<head>
<title>Skinpedia</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav class="navbar navbar-expand-md navbar-light bg-light">
<a href="#" class="navbar-brand"><h1>Skinpedia</h1></a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ml-auto">
<a href="index.html" class="nav-item nav-link">Home</a>
<a href="cleansers.html" class="nav-item nav-link">Cleansers</a>
<!-- <a href="treatments.html" class="nav-item nav-link">Treatments</a> -->
<a href="moisturizers.html" class="nav-item nav-link">Moisturizers</a>
<a href="sunscreens.html" class="nav-item nav-link active">Sunscreens</a>
<a href="products.html" class="nav-item nav-link">Gadgets</a>
</div>
</div>
</nav>
<!-- BACK TO TOP BUTTON -->
<a id="back-to-top" href="#" class="btn btn-light btn-lg back-to-top" role="button">
<i class="fa fa-chevron-up" style="color:white"></i>
</a>
<!--END OF BACK TO TOP BUTTON-->
<!--SIDEBAR FOR SPECIFICS-->
<section id="sidebar" class="collapse d-none d-md-block">
<div id="filters">
<div class="row">
<div class="col-2">
<div class="btn-group btn-group-vertical" data-toggle="buttons">
<h6 class="p-1 border-bottom">Specifics</h6>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="tinted" id="tinted">
With Tint
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="no-tint" id="no-tint">
Without Tint
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="water" id="water">
Water Resistant
</label>
</div>
</div>
<div class="col-2">
<div class="btn-group btn-group-vertical" data-toggle="buttons">
<h6 class="p-1 border-bottom">Dermatologist</h6>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="dray" id="dray">
Dr. Dray
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="shah" id="shah">
Dr. Shah
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="lim" id="lim">
Dr. Lim
</label>
</div>
</div>
</div>
</div>
</section>
<!--END-->
<!--MOBILE BTN-->
<div class="filters-mobilebtn">
<button class="btn btn-default border border-info d-md-none" type="button" data-toggle="collapse" data-target="#mobile-sidebar" aria-expanded="false" aria-controls="mobile-sidebar">Filters<span class="fa fa-filter pl-1"></span>
</button>
</div>
<!--SIDEBAR FOR SPECIFICS-->
<section id="mobile-sidebar" class="d-md-none collapse">
<div id="filters-mobile">
<div class="row">
<div class="col">
<div class="btn-group btn-group-vertical" data-toggle="buttons">
<h6 class="p-1 border-bottom">Specifics</h6>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="tinted" id="tinted-mobile">
With Tint
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="no-tint" id="no-tint-mobile">
Without Tint
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="water" id="water-mobile">
Water Resistant
</label>
</div>
</div>
<div class="col">
<div class="btn-group btn-group-vertical" data-toggle="buttons">
<h6 class="p-1 border-bottom">Dermatologist</h6>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="dray" id="dray-mobile">
Dr.Dray
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="shah" id="shah-mobile">
Dr.Shah
</label>
<label class="btn btn-secondary">
<input type="checkbox" name="specifics" value="lim" id="lim-mobile">
Dr.Lim
</label>
</div>
</div>
</div>
</div>
</section>
<!--END-->
<div class = "container-fluid">
<div class = "row">
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column tinted hyram shah">
<div class="bg-white rounded shadow-sm"><img src="https://images.ulta.com/is/image/Ulta/2559459?op_sharpen=1&resMode=bilin&qlt=85&wid=800&hei=800&fmt=jpg" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.ulta.com/p/hydrating-sunscreen-face-sheer-tint-spf-30-pimprod2013299?sku=2559459&CMPID=CSGGLE&CAWELAID=330000200001981844" class="text-dark">CeraVe Tint SPF 30</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$16.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/Mdsolarsciences" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/mdsolarsciences-mineral-creme-spf-50-broad-spectrum-uva-uvb-1.7-oz./12900983.html" class="text-dark">MD Solar Sciences SPF 50</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$30.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint shah dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/EltaMd" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/eltamd-uv-clear-broad-spectrum-spf46/11370303.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Feltamd-uv-clear-broad-spectrum-spf46%2F11370303.html&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=d8810b1d6a9011ec811b054d0a1c0e11&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">EltaMd UV Clear Broad-Spectrum SPF-46</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$37.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column tinted shah dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/EltaMdTint" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/eltamd-uv-clear-tinted-broad-spectrum-spf46/11370312.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Feltamd-uv-clear-tinted-broad-spectrum-spf46%2F11370312.html&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=6afe48da6a9111ec817837610a1c0e0b&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">EltaMd UV Clear Broad-Spectrum SPF-46 Tinted</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$39.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column tinted shah">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/supergooptint" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/supergoop-glowscreen-spf-40-1.7-fl.-oz./12902784.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Fproduct_Glowscreen%2BSPF%2B40_82997.htm&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=2efaf3896a9211ec810bcb4a0a1c0e13&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">Supergoop! Glowscreen SPF 40</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$36.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint shah water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/supergoop" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/supergoop-unseen-sunscreen-spf-40-1.7-fl.-oz./12901956.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Fsupergoop-unseen-sunscreen-spf-40-1.7-fl.-oz.%2F12901956.html&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=df63254c6a9211ec81d002bf0a1c0e12&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">Supergoop! Unseen Sunscreen SPF 40</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$34.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column tinted shah dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/EltaMdRestoreTint.jpg" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/eltamd-uv-restore-broad-spectrum-spf40-tinted-2-oz/12698965.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Fproduct_UV%2BRestore%2BBroadSpectrum%2BSPF%2B40%2B%2BTinted_84520.htm&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=37cee0066a9611ec812e058a0a1c0e10&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">EltaMD UV Restore Broad-Spectrum SPF 40 - Tinted (2 oz.)</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$38.50</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint shah">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/Farmacy" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.sephora.com/product/green-defense-daily-mineral-sunscreen-P449188?skuId=2268779&nrtv_cid=00ae561af2108226fc59672eeb51ffe216dd518fe34f77b9b33eef8a2023fa41&SubID=1361&nrtv_as_src=1&om_mmc=aff-linkshare-redirect-ty8NUtOSnl0&c3ch=Linkshare&c3nid=ty8NUtOSnl0&affid=ty8NUtOSnl0-ewd2ZfGOi9X6.GKYBV8IDw&ranEAID=ty8NUtOSnl0&ranMID=2417&ranSiteID=ty8NUtOSnl0-ewd2ZfGOi9X6.GKYBV8IDw&ranLinkID=10-1&browserdefault=true" class="text-dark">Farmacy Green Defense Daily Mineral Sunscreen</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$36.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column tinted shah lim">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/LarochePosayTint" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.laroche-posay.us/our-products/sun/tinted-sunscreen/anthelios-mineral-tinted-sunscreen-for-face-spf-50-883140020899.html?nrtv_cid=891943ab13383c4b0dd8240aed142b5325156a698465b705fcc082ccecf8d4a0&utm_source=narrativ&utm_medium=affiliate&utm_campaign=shopmyshelf&nrtv_as_src=1" class="text-dark">La Roche-Posay Anthelios Ultra-Light Mineral Sunscreen Fluid SP-50</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$33.50</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint shah lim dray water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/larochePosayMilk" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.skinstore.com/la-roche-posay-anthelios-melt-in-sunscreen-milk-spf-60/12134525.html?affil=awin&utm_content=Shop+My+Shelf&utm_term=Editorial+Content&utm_source=AWin-740219&utm_medium=affiliate&utm_campaign=AffiliateWin&awc=15340_1640995980_58a2e193f26c53189104a0a12abff468" class="text-dark">La Roche-Posay Anthelios Melt-In Sunscreen Milk SPF 60</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$21.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint lim">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/Neutrogena" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.target.com/p/neutrogena-ultra-sheer-dry-touch-sunscreen-lotion-spf-55-3-fl-oz/-/A-12388016?ref=tgt_adv_XS000000&AFID=google_pla_df&fndsrc=tmnv&DFA=71700000087527546&CPNG=PLA_DVM%2Ba064R000012IyxcQAC-J%26J_NTG_AVO_SUN_J3_Google+Search_Sales_Oct_2021&adgroup=PLA_NTG_AVO&LID=700000001393753pgs&network=g&device=c&location=9033289&gclid=CjwKCAiA8bqOBhANEiwA-sIlN7sHDJfEak3rbVQmgLWDJq6A28H1QOODivP7Cu7Jg7-m2MU0kE6dKRoCRUIQAvD_BwE&gclsrc=aw.ds" class="text-dark">Neutrogena Ultra Sheer Dry-Touch Sunscreen</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$7.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray lim">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/larochePosaymineral" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/la-roche-posay-anthelios-mineral-sunscreen-moisturiser-with-hyaluronic-acid-1.7-fl.-oz/12865498.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Fla-roche-posay-anthelios-mineral-sunscreen-moisturiser-with-hyaluronic-acid-1.7-fl.-oz%2F12865498.html&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=463f331a6aa611ec81ced2200a1c0e14&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">La Roche-Posay Anthelios 100% Mineral Sunscreen Moisturizer with Hyaluronic Acid SPF30</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$34.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column tinted dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/drmtlgy" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.drmtlgy.com/collections/sunscreens/products/universal-tinted-moisturizer-spf-46?utm_source=shopmyshelf" class="text-dark">Universal Tinted Moisturizer SPF 46</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$25.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/mdsolarsciencesbalm" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://mdsolarsciences.com/collections/shopall/products/tinted-lip-balm-spf30?smsclickid=7af032e0-a4af-4e12-b268-c5a1443d3c76" class="text-dark">Tinted Lip Balm - SPF 30</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$20.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/Neutrogenaserum" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.ulta.com/p/invisible-daily-defense-face-serum-spf-60-pimprod2019317?sku=2573917&nrtv_cid=a7762ffc398d340aa77d7617d1abde36878128d071741493e09bde24f4e140ee&utm_source=narrativ&utm_medium=cpc&utm_campaign=narrativ_premium_editorial&utm_content=shopmyshelf&nrtv_as_src=1" class="text-dark">Neutrogena Invisible Daily Defense Face Serum SPF 60+</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$17.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint water dray">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/Bondisands" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.amazon.com/Bondi-Sands-Fragrance-Sunscreen-Protection/dp/B08Q7CP5NL/ref=asc_df_B08Q7CP5NL/?tag=hyprod-20&linkCode=df0&hvadid=509242281522&hvpos=&hvnetw=g&hvrand=5764768264475150859&hvpone=&hvptwo=&hvqmt=&hvdev=c&hvdvcmdl=&hvlocint=&hvlocphy=9033289&hvtargid=pla-1291608639084&psc=1" class="text-dark">Bondi Sands Fragrance Free Sunscreen Body Lotion SPF 50</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$13.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/eltamdactive" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/eltamd-uv-active-broad-spectrum-spf50-cream-8-oz/12639077.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Feltamd-uv-active-broad-spectrum-spf50-cream-8-oz%2F12639077.html&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=7faccf116aa911ec811b05610a1c0e11&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">EltaMD UV Active Broad-Spectrum SPF 50</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$60.00</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/eltamdsport" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.dermstore.com/eltamd-uv-sport-broad-spectrum-spf50-tube/11370299.html?AID=13716219&PID=100149615&URL=https%3A%2F%2Fwww.dermstore.com%2Feltamd-uv-sport-broad-spectrum-spf50-tube%2F11370299.html&affil=cj&utm_source=cj-100149615&utm_medium=affiliate&cjevent=98880aa36aa911ec811b05610a1c0e11&utm_campaign=CJ&pubname=Shop+My+Shelf%2C+Inc.&utm_content=Shop+My+Shelf%2C+Inc.&cjdata=MXxOfDB8WXww" class="text-dark">EltaMD UV Sport Broad-Spectrum SPF 50 Tube</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$25.50</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/bananaboat" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.amazon.com/Banana-Boat-Protect-Mineral-Sunscreen/dp/B07CKKHZYF?tag=shopmyshelf00-20" class="text-dark">Banana Boat Sport 100% Mineral</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$8.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
<!-- Gallery item -->
<div class="col-xl-3 col-lg-4 col-md-6 mb-4 column no-tint dray water">
<div class="bg-white rounded shadow-sm"><img src="img/Sunscreen/cetaphil" alt="" class="img-fluid card-img-top">
<div class="p-4">
<h5> <a href="https://www.target.com/p/cetaphil-sheer-mineral-sunscreen-stick-spf-50-0-5oz/-/A-80139633?clkid=79d7c0f1N6aaa11eca88ec1535e5484f9&lnm=81938&afid=shopmyshelf&ref=tgt_adv_xasd0002" class="text-dark">Cetaphil Sheer Mineral Sunscreen Stick - SPF 50</a></h5>
<div class="d-flex align-items-center justify-content-between rounded-pill bg-light px-3 py-2 mt-4">
<p class="small mb-0"><span class="font-weight-bold">$9.99</span></p>
</div>
</div>
</div>
</div>
<!-- End -->
</div>
</div>
</body>
</html>