-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
70 lines (56 loc) · 1.62 KB
/
Copy pathproduct.html
File metadata and controls
70 lines (56 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Details Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>All PRODUCTS</h1>
<div class="iconCart">
<img src="icon.png">
<div class="totalQuantity">0</div>
</div>
</header>
<div class="listProduct">
<div class="item">
<img src="images/1.webp" alt="">
<h2>Hot Yellow Saree</h2>
<div class="price">550</div>
<button>Add To Cart</button>
</div>
</div>
</div>
<div class="cart">
<h2>
Your CART
</h2>
<div class="listCart">
<div class="item">
<img src="images/1.webp">
<div class="content">
<div class="name">Hot Yellow Saree</div>
<div class="price">550 / Product</div>
</div>
<div class="quantity">
<button>-</button>
<span class="value">3</span>
<button>+</button>
</div>
</div>
</div>
<div class="buttons">
<div class="close">
CLOSE
</div>
<div class="checkout">
<a href="checkout.html">CHECKOUT</a>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>