-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
77 lines (74 loc) · 2.89 KB
/
cart.html
File metadata and controls
77 lines (74 loc) · 2.89 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
<!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>
<link rel="stylesheet" href="cart.css">
<link rel="stylesheet" href="./navbar.css">
<link rel="stylesheet" href="./footer.css">
</head>
<body>
<div class="main_container"></div>
<div class="cartPage">
<div class="items">
<div class="noItems">
<h1>Cart</h1>
<p>1 item</p>
</div>
<div class="continueShopping">
<h2><a href="./PremiumServices.html">CONTINUE SHOPPING</a></h2>
</div>
</div>
<div class="ProductContainer">
<div class="productDetails">
<div id="heading">
<p>Product</p>
<p>Price</p>
</div>
<div id="profile">
<h2>Featured Profile (Senior Level)</h2>
<p>3999</p>
</div>
<div id="coupon">
<div>
<input id="coupontext" type="text" placeholder="HAVE COUPON">
<h2 id="applybtn">APPLY</h2>
</div>
</div>
<div id="discount">
<p>Coupon Discount</p>
<p id="discountgiven">0</p>
</div>
<div id="tax">
<p>GST (Goods and Service Tax) at 18 %</p>
<p> 720</p>
</div>
<div id="total">
<h2>Total Price</h2>
<h2 id="tPrice">4719</h2>
</div>
</div>
<div class="sidebar">
<div>
<div id="terms">
<input type="checkbox" name="" id="checkbox">
<p>I have read the </p><p><a href="">Terms & Conditions</a></p>
</div>
</div>
<div id="checkboxbtn">
<h3 ><a href="./login.html">LOGIN/SIGNUP TO PLACE ORDER</a></h3>
</div>
</div>
</div>
<div class="disclaimer">
<h2>Disclaimer:-</h2>
<p>Please note that Monster DOES NOT authorize any agency/partner to contact you for processing REFUNDS. Beware of such suspicious calls/emails/SMSs pretending to be from Monster. Monster DOES NOT seek fees/ deposit towards any job offer or interview.
We advise you to report any suspicious mailers/activity, pretending to be from Monster, to our following email addresses: spam@monsterindia.com / jobseeker@monsterindia.com</p>
</div>
</div>
<div id="footer746"></div>
</body>
</html>
<script src="./cart.js" type="module"></script>