forked from gauravkrs/Blinkit
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathveg_index.html
More file actions
92 lines (86 loc) · 2.46 KB
/
Copy pathveg_index.html
File metadata and controls
92 lines (86 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart</title>
<link rel="icon" href="https://blinkit.com/images/apple-touch-icon-change-60x60-1be1e81.png">
<style>
.proceed{
cursor: pointer;
}
</style>
</head>
<style>
#Cart{
width:400px;
/* border:1px solid red; */
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
margin:auto;
gap: 10px;
padding: 10px;
}
.flex{
display: flex;
}
.below_cart{
/* display: flex; */
width:400px;
/* border:1px solid red; */
margin:auto;
justify-content: center;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 10px;
}
.sum{
/* width: 100px; */
height: 20px;
background-color: green;
border: 1px solid green;
margin: auto;
justify-content: space-around;
display: flex;
margin-left: 90px;
font-size: 20px;
padding: 15px;
border-radius: 6px;
margin: auto;
/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}
#Cart+div{
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
</style>
<body>
<div id="Cart">
<h2>my cart</h2>
<h3>delivery in 36 minutes</h3>
<p>Pune,Maharashtra</p>
</div>
<div class="below_cart">
<h3>Before Checkout</h3>
<div class="flex">
<div>
<img src="https://cdn.grofers.com/cdn-cgi/image/f=auto,fit=scale-down,q=50,metadata=none,h=180/app/images/products/sliding_image/286009a.jpg?ts=1632900154" alt="">
<p>₹88</p>
</div>
<div>
<img src="https://cdn.grofers.com/cdn-cgi/image/f=auto,fit=scale-down,q=50,metadata=none,h=180/app/images/products/sliding_image/286009a.jpg?ts=1632900154" alt="">
<p>₹88</p>
</div>
</div>
<div class="sum">
<div class="length"></div>
<div class="total"></div>
<div class="proceed">Proceed ></div>
</div>
</div>
</body>
</html>
<script src="/script/cart1.js"></script>
<script>
document.querySelector(".proceed").addEventListener("click",function(){
window.location.href="payment.html"
})
</script>