-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection.html
45 lines (43 loc) · 2.13 KB
/
collection.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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Collection</title>
<link rel = "stylesheet" href="collection.css">
</head>
<body>
<div class="productList">
<section class="product-details" >
<div class="image-slider">
<div class="product-images">
<img src="img/img-2.jpg" class="active" alt="">
<img src="img/img-3.jpg" alt="">
<img src="img/img-4.jpg" alt="">
<img src="img/img-1.jpg" alt="">
</div>
</div>
<section>
<div class="details">
<h2 class="product-brand">calvin klein</h2>
<p class="product-short-des">Blooming Jelly Women's Dressy Casual Tops Business Work Blouses White Button Down Shirts Cap Sleeve V Neck Tshirt</p>
<span class="product-price">$99</span>
<span class="product-actual-price">$200</span>
<span class="product-discount">( 50% off )</span>
<p class="product-sub-heading">select size</p>
<input type="radio" name="size" value="s" checked hidden id="s-size">
<label for="s-size" class="size-radio-btn check">s</label>
<input type="radio" name="size" value="m" hidden id="m-size">
<label for="m-size" class="size-radio-btn">m</label>
<input type="radio" name="size" value="l" hidden id="l-size">
<label for="l-size" class="size-radio-btn">l</label>
<input type="radio" name="size" value="xl" hidden id="xl-size">
<label for="xl-size" class="size-radio-btn">xl</label>
<button class="btn cart-btn">add to cart</button>
</div>
</section>
</section>
</div>
<script src="collection.js"></script>
</body>
</html> -->