-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (70 loc) · 3.34 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section>
<div class="container">
<h1>My Market place</h1>
<div class="cart">
<div class="col-md-12 col-lg-10 mx-auto">
<div class="cart_iteam">
<div class="row">
<div class="col-md-7 center-item">
<img src="images/product-1.png" alt="Iphone">
<h3>Iphone</h3>
</div>
<div class="col-md-5 center-item">
<button id="iminus">-</button>
<input id="iinput" type="number" min="0" class="form-control text-center" value="0">
<button id="ipluss">+</button>
<h5>$<span id="iprice">100</span></h5>
<p>❌</p>
</div>
</div>
</div>
<div class="cart_iteam">
<div class="row">
<div class="col-md-7 center-item">
<img src="images/product-2.png" alt="Iphone">
<h3>Iphone</h3>
</div>
<div class="col-md-5 center-item">
<button id="cminus">-</button>
<input id="cinput" type="number" min="0" class="form-control text-center" value="0">
<button id="cpluss">+</button>
<h5>$<span id="cprice">50</span></h5>
<p>❌</p>
</div>
</div>
</div>
<div class="cart_iteam">
<div class="row">
<div class="col-md-8">
<h4>subtotal : </h4>
<h5>Tax : </h5>
<h4>Total : </h4>
</div>
<div class="col-md-4">
<h4>$<span id="subtotal">00</span></h4>
<h5>$<span id="tax">00</span></h5>
<h4>$<span id="total">00</span></h4>
</div>
</div>
</div>
<button id="buy_btn" class="btn">Buy Now</button>
</div>
</div>
</div>
</section>
<!-- add js file -->
<script src="script.js"></script>
<!-- add bootstrap js cdn -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>