-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcartpage1.html
79 lines (69 loc) · 3.47 KB
/
cartpage1.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
<!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 Page</title>
<link rel="stylesheet" href="cartpages.css">
<link rel="stylesheet" href="/components/test.css">
<link rel = "icon" href ="https://pbs.twimg.com/profile_images/646260852719419392/Ar3oqF39_400x400.png" type = "image/x-icon">
</head>
<body>
<div id="navbar"></div>
<div id="nav"></div>
<div id="cartmain">
<div><img id="cartimg" src="https://www.reliancedigital.in/medias/Acer-15-Aspire3-R3-Laptop-492849812-i-1-1200Wx1200H?context=bWFzdGVyfGltYWdlc3w1NzA0NzV8aW1hZ2UvanBlZ3xpbWFnZXMvaDIxL2g3NS85ODQxMjI3MzAwODk0LmpwZ3xmZWFjMjg5NzlhMTY5OTZmNDZkYTczZjlmNWY1YmY5YTRhMDVjN2RiZjhiYmM1YTNjNWI1N2QzNmMyNjRlZWYz" alt="">
</div>
<div>
<div><h4>Acer A315-23 Aspire 3 Laptop (AMD Ryzen 3-3250U/4 GB/256 GB SSD/AMD Radeon Graphics/Windows 11/ Full HD), 39.62 cm (15.6 inch)</h4></div>
<div id="innerdiv">
<div>
<h4>Gain more with offers (7)</h4>
<li>Up to 7.5% Instant Discount(Max Rs.7500) with ICICI Bank Cards. Read T&C</li>
<li>Buy RCP warranty and save up to 55%. Read T&C</li>
<li>5% Instant Discount with HDFC Bank Credit Cards.. Read T&C</li>
<li>Get Cashback upto Rs. 1,000 on Mobikwik Wallet. Read T&C</li><br>
<h4>Save more with EMI/Cashback (5)</h4>
<li>Credit Card No-Cost EMI Options. <a href="#"> View Plans</a></li>
<li>Debit Card No-Cost EMI Options. <a href="#"> View Plans</a> </li>
<li>Credit Card Low-Cost EMI Options. <a href="#"> View Plans</a></li>
<li>Debit Card Low-Cost EMI Options. <a href="#"> View Plans</a></li>
<br>
<h4>Key Features</h4>
<li>Processor: AMD Ryzen 3-3250U Processor</li>
<li>RAM: 4GB</li>
<li>Internal Storage : 256 GB</li>
<li>Storage Type: SSD</li>
<br>
<h4>Return Policy</h4>
<li>Items are eligible for return within 7 Days of Delivery. Read T&C</li>
<li>All accessories, product & packaging need to be returned in original condition.</li>
</div>
<div>
<h2>₹28,490.00</h2>
<p class="thr">MRP: ₹39,999.00 (Inclusive of all taxes)</p>
<p>You Save: 29%(₹11,509)</p>
<p>EMIs (Credit Cards) from ₹1341.12/month | View Plans</p>
<h3>FREE Shipping!</h3>
<input type="text" placeholder="PIN Code"><BR></BR>
<button>ADD TO CART</button>
<button class="sndbtn">BUY NOW</button>
</div>
</div>
</div>
</div>
<!-- <div id="footer"></div> -->
</body>
</html>
<script src="cartpages.js"></script>
<script type="module">
import footer from "./components/footer.js"
import navbar from "./components/navbar.js"
import navs from "./components/importnav.js"
document.querySelector("#navbar").innerHTML=navbar();
document.querySelector("#footer").innerHTML=footer();
navs().then((data)=>{
document.getElementById('nav').innerHTML = data
})
</script>