-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
99 lines (88 loc) · 2.76 KB
/
cart.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
<!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>Document</title>
<script
src="https://kit.fontawesome.com/673d24dcfe.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style/cart.css" />
</head>
<body>
<nav id="navbar">
<div id="flipkart-logo">
<img
src="https://static-assets-web.flixcart.com/www/linchpin/fk-cp-zion/img/flipkart-plus_8d85f4.png"
alt=""
/>
<a href=""
>Explore <span>Plus</span>
</a>
</div>
<div id="input-container">
<input type="text" placeholder="Search for products,brand and more" />
<button id="search-btn">
<i class="fa fa-search" style="font-size: 20px"></i>
</button>
</div>
<div id="login">
<div>
<div class="dropdown">
<button style="margin-right: 5%;" class="dropbtn">Login</button>
<div class="dropdown-content">
<a href="#">My Profile</a>
<a href="#">SuperCoin Zone</a>
<a href="#">Flipkart Plus Zone</a>
<a href="#">Orders</a>
<a href="#">Wishlist</a>
<a href="#">My Chats</a>
<a href="#">Coupons</a>
<a href="#">Gift Cards</a>
<a href="#">Notifications</a>
<a href="#">Logout</a>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<div id="cart">
<div id="leftcart">
<div id="cartlength">My Cart (<span id="cartl1"></span>)</div>
<div id="cartcontent"></div>
<div id="cartcontentbottom">
<button onclick="tocheckout()">Place Order</button>
</div>
</div>
<div id="rightcart">
<div id="rightcart1">PRICE DETAILS</div>
<div id="rightcart2">
<div>Price</div>
<div id="a1"></div>
</div>
<div id="rightcart3">
<div>Discount</div>
<div id="a2" style="color: rgb(15, 116, 15); font-size: 15px"></div>
</div>
<div id="rightcart4">
<div>Delivery Charges</div>
<div id="a3" style="color: rgb(14, 138, 14); font-size: 15px">
Free
</div>
</div>
<div id="rightcart5">
<div>Total Amount</div>
<div id="a4"></div>
</div>
<div id="rightcart6">
You will save ₹<span id="a6"></span> on this order
</div>
</div>
</div>
</body>
</html>
<script src="script/cart.js"></script>