-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbag.html
102 lines (94 loc) · 3.82 KB
/
bag.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
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="stylesheet" href="bagstyle.css">
</head>
<body>
<header class="navbar">
<a href="index.html" class="logo">
<img class="logo_img" src="myntra_logo.png" alt="">
</a>
<div class="sections">
<div class="sections_item">MEN</div>
<div class="sections_item">WOMEN</div>
<div class="sections_item">KIDS</div>
<div class="sections_item">HOME & LIVING</div>
<div class="sections_item">KIDS</div>
<div class="sections_item">STUDIO</div>
</div>
<div class="search">
<input class="search_input" type="text" placeholder="Search for products , brands and more">
</div>
<div class="features">
<div class="feature_container">
<span class="material-symbols-outlined feature_icon">
person
</span>
<span class="feature_name">Profile</span>
</div>
<div class="feature_container">
<span class="material-symbols-outlined feature_icon">
favorite
</span>
<span class="feaure_name">Wishlist</span>
</div>
<div class="feature_container">
<a href="bag.html" class="material-symbols-outlined feature_icon">
shopping_bag
</a>
<a href="bag.html" class="feaure_name">Bag</a>
</div>
</div>
</header>
<div class="bag_content">
<div class="bag_items_container">
<div class="bag_item_container">
<div class="bag_item_photo_container">
<img class="bag_item_photo" src="pics/item1.webp" alt="">
</div>
<div class="bag_item_content">
<!-- <div class="item_rating">4.5⭐ | 1k</div> -->
<span class="item_company">Roadster</span>
<div class="item_name">Mens Round Neck T-Shirt</div>
<div class="item_price">
<span class="discounted_price">Rs 500</span>
<span class="original_price">600</span>
<span class="discount">20% off</span>
</div>
<div class="return_available"><strong>14 days </strong> return available</div>
<div>Delivery by <span class="delivery_date"><strong>12th Feb 2024</strong></span></div>
<a class="crossbtn">X</a>
</div>
</div>
</div>
<div class="bag_price_details">
<div class="price_details">Price Details</div>
<div class="cont">
<span>Total MRP</span>
<span class="total_MRP">Rs 1000</span>
</div>
<div class="cont">
<span>Discount on MRP</span>
<span class="discount_on_MRP">-Rs 100</span>
</div>
<div class="cont">
<span>Convenience Fees</span>
<span class="convenience_fees">Rs 99</span>
</div>
<div class="divider"></div>
<div class="cont">
<span>Total Amount</span>
<span class="total_amount">Rs 1000</span>
</div>
<button class="place_order">Place Order</button>
</div>
</div>
<script src="data.js"></script>
<script src="script1.js"></script>
<script src="bagscript.js"></script>
</body>
</html>