forked from mohammedyusuf380/blog-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentsucces.html
53 lines (51 loc) · 1.32 KB
/
paymentsucces.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
<!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>Payment</title>
<style>
*{
margin: 0px;
padding: 0px;
color: #000000;
box-sizing: border-box;
font-family: arial;
}
body{
background-image: url("./images/gradient-dark-blue-futuristic-digital-background.jpg");
background-size: auto;
}
.payment{
width: 350px;
height: 180px 120px;
margin:200px auto;
background-color:rgb(221, 240, 234);
}
.payment h2{
font-size: 40px;
text-align: center;
margin: 5px 0px;
}
.box p{
text-align: center;
margin: 5px 0px;
}
.link{
color: #00aced;
}
</style>
</head>
<body>
<div class="payment">
<div class="box">
<strong>
<h2>Payment Successful</h2>
<p>We have sent a bill on the customer's email id</p><br>
<p>Go back to <a class="link" href="main.html"> Home Page</a></p>
</strong>
</div>
</div>
</body>
</html>