-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (73 loc) · 2.38 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
<!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>
<style>
body {
background-color: rgba(131, 201, 236, 0.64)
}
button {
width: 220px;
padding: 6px 10px;
border-radius: 8px;
margin-top: 20px;
background-color: #6930CA;
color: white;
}
.amount {
font-size: 24px;
font-weight: 500;
color: #6930CA;
}
p {
font-size: 16px;
font-weight: 500;
color: #918f0f;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#netbanking {
margin-left: 200px !important;
margin-top: 20px !important;
}
#netbanking1 {
margin-left: 200px !important;
margin-top: 20px !important;
}
</style>
</head>
<body>
<!-- <div style="text-align: center; margin-top: 75px;">
<img width="400" src="https://www.nilkamalfurniture.com/cdn/shop/products/pebblely_18_800x.jpg?v=1678453271">
<div>
<p>
Nilkamal Fyrebird Athena Gaming Chair (Grey/Turquoise)
</p>
</div>
<div class="amount">₹6000</div>
<div id="netbanking"></div>
<button id="pay">Pay</button>
</div> -->
<div class="container">
<img width="400" src="https://www.nilkamalfurniture.com/cdn/shop/products/pebblely_18_800x.jpg?v=1678453271">
<div>
<p>
Nilkamal Fyrebird Athena Gaming Chair (Grey/Turquoise)
</p>
</div>
<div class="amount">₹6000</div>
<div id="netbanking"></div>
<div id="netbanking1"></div>
<button id="pay">Pay</button>
</div>
<script src="https://sdk.cashfree.com/js/v3/cashfree.js"></script>
<script src="index.js"></script>
</body>
</html>