-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (95 loc) · 2.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=
, initial-scale=1.0"
/>
<title>Valentine Coupon</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<h1 class="text-center fw-bold text-danger">
Valentine Cost :
</h1>
</div>
<div class="shop-container d-flex justify-content-around">
<div>
<div class="rose p-2 box">
<img class="logo" src="./images/kitkat.png" alt="" />
<h6>KitKat Chocolate</h6>
<h5>Price: <span id="kitkat-price"> 70</span></h5>
<input
id="kitkat-quantity"
type="text"
placeholder="type here Quantity"
/>
<br />
<button id="kitkat-buy-btn" class="buy-btn">
Buy Now
</button>
</div>
<div class="rose p-3 box">
<img class="logo" src="./images/image-removebg-preview.png" alt="" />
<h6>Rose</h6>
<h5>Price: <span id="rose-price"> 40</span></h5>
<input
id="rose-quantity"
type="text"
placeholder="type here Quantity"
/>
<button id="rose-buy-btn" class="buy-btn">Buy Now</button>
</div>
<div class="rose p-3 box">
<img class="logo" src="./images/diary.jpg" alt="" />
<h6>Diary</h6>
<h5>Price: <span id="diary-price"> 100</span></h5>
<input
id="diary-quantity"
type="text"
placeholder="type here Quantity"
/>
<button id="diary-buy-btn" class="buy-btn">Buy Now</button>
</div>
</div>
<div class="money-tracker text-center">
<h4>Chocolate: <span id="chocolate"> 00</span></h4>
<hr />
<h4>Rose: <span id="rose"> 00</span></h4>
<hr />
<h4>Diary: <span id="diary"> 00</span></h4>
<hr />
<h3>Total: <span id="total"> 00</span></h3>
<div class="promo-code mt-3 text-center p-3">
<h5 class="bg-info mt-2">Use <span class="promo-code2">CR7 </span>Promo Code for 10% Discount</h5>
<input
id="promo-code"
class="p-2 mt-2"
type="text"
placeholder="CR7"
/>
<button
id="handle-promo-code"
class="btn btn-primary"
type="button"
>
Apply
</button>
</div>
<h2 class="mt-5">ALL COST : <span id="all-total">00</span></h2>
</div>
</div>
<!-- add javascript -->
<script src="./app.js"></script>
</body>
</html>