-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (81 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NK Codes💛-Product Page</title>
<!--External Style Sheet-->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="product">
<div class="gallery">
<img src="./images/image-1.png" id="productImg" alt="">
<div class="controls">
<span class="btn active"></span>
<span class="btn"></span>
<span class="btn"></span>
</div>
</div>
<div class="details">
<h1>Casual T-Shirt</h1>
<h2>₹400</h2>
<h3>30% OFF</h3>
<p>Crafted for quality and designed for comfort, our short sleeve tees for men boast a timeless crewneck design that never goes out of style. Wear as a bottom layer or as your only layer – this wardrobe essential is just that versatile.</p>
<form>
<div class="size-select">
<p>Size</p>
<label for="small">
<input type="radio" name="size" id="small">
<span>S</span>
</label>
<label for="medium">
<input type="radio" name="size" id="medium">
<span>M</span>
</label>
<label for="large">
<input type="radio" name="size" id="large">
<span>L</span>
</label>
<label for="x-large">
<input type="radio" name="size" id="x-large">
<span>XL</span>
</label>
<label for="xx-large">
<input type="radio" name="size" id="xx-large">
<span>XXL</span>
</label>
</div>
<div class="color-select">
<p>Color</p>
<label for="red">
<input type="radio" name="color" id="red">
<span class="color-1"></span>
</label>
<label for="green">
<input type="radio" name="color" id="green">
<span class="color-2"></span>
</label>
<label for="blue">
<input type="radio" name="color" id="blue">
<span class="color-3"></span>
</label>
<label for="pink">
<input type="radio" name="color" id="pink">
<span class="color-4"></span>
</label>
</div>
<div class="quantity-select">
<p>Quantity</p>
<input type="number" value="1" min="0">
</div>
<button>Buy Now</button>
</form>
</div>
</div>
</div>
<!--JS File-->
<script src="./script.js"></script>
</body>
</html>