-
Notifications
You must be signed in to change notification settings - Fork 0
/
product8.html
61 lines (53 loc) · 1.81 KB
/
product8.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
<!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="product.css">
<title>Ecommerce - Cart</title>
</head>
<body>
<!-- header -->
<header>
<a href="index.html"><button>Home</button></a>
</header>
<div id="parent">
<!-- images -->
<div id="images">
<img src="images/cargo.webp" alt="image">
</div>
<!-- details -->
<div id="details">
<h2> Caego pant</h2>
<h4> Rs - 1800 </h4>
<ul>
<p>Loose fit hoodie</p>
<p>Full cotton</p>
<p>Lorem ipsum dolor sit amet.</p>
<p>Lorem, ipsum dolor.</p>
</ul>
<div id="bottom">
<!-- color -->
<select name="Color" id="select">
<option value="1"> Pink </option>
<option value="2"> Blue </option>
<option value="3"> Red </option>
<option value="4"> Green </option>
<option value="5"> Purple </option>
</select>
<!-- size -->
<select name="Size" id="select">
<option value="1"> XS </option>
<option value="2"> S </option>
<option value="3"> M </option>
<option value="4"> L </option>
<option value="5"> XL </option>
<option value="5"> XXL </option>
</select>
</div>
<!-- button -->
<a href="cart.html"><button> Add to cart </button></a>
</div>
</div>
</body>
</html>