-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
62 lines (55 loc) · 1.5 KB
/
success.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
<!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>Success Page</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: white;
font-family: Helvetica, Arial, sans-serif;
text-align: center;
}
.container {
width: 100%;
height: 300px;
background-color: #77B43F;
/* rgb(60, 185, 144); */
display: flex;
flex-direction: column;
padding: 40px;
justify-content: space-around;
text-align: center;
color: white;
}
p {
color: black
}
#success {
border: 1px solid #77B43F;
}
</style>
</head>
<body>
<div id="success">
<img src="https://www.instantpay.in/static/images/recon_success.png" alt="">
<div class="container">
<h1>CONGRATULATION!</h1>
<h1>SUCCESSFUL PAYMENT</h1>
<p>Your payment has successfully done.</p>
<p>Thank You for shopping</p>
</div>
</div>
</body>
</html>