-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (84 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Product Page Design</title>
</head>
<body>
<div class="container">
<div class="product">
<div class="gallery">
<img src="images/image1.png" id="productImg" />
<img src="images/image1.png" id="productImg2" />
<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>$15.00</h2>
<h3>30% OFF</h3>
<p>
Wrangler is an american manufacturer of jeans and other clothing
items, particularly workwear.
</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="XL">
<input type="radio" name="size" id="XL" />
<span>XL</span>
</label>
<label for="XXL">
<input type="radio" name="size" id="XXL" />
<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" />
</div>
<button>Buy Now</button>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
<script src="zoom.js"></script>
</body>
</html>