forked from BhanuPrathapGoud/Anthropology-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaymentcompletionpage.html
55 lines (55 loc) · 1.45 KB
/
paymentcompletionpage.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
<!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>
.main{
margin: auto;
margin-top: 60px;
text-align: center;
width: 30%;
height: 200px;
background-color: blueviolet;
border-radius: 8px;
}
button{
border-radius: 5px;
border: 0px;
background-color: rgb(52, 161, 128);
color: white;
padding: 9px 9px 9px 9px;
cursor: pointer;
font-weight: 700;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.box{
margin: auto;
margin-top: 20px;
width: 50%;
color:black;
text-align: center;
font-family: 'Courier New', Courier, monospace;
}
</style>
</head>
<body>
<div class="main">
<div class="box">
<div>
<h1 style="margin-top: 10px;">
YOUR PAYMENT IS SUCCESSFULLY
</h1>
<button onclick="funhome()">GO TO HOME</button>
</div>
</div>
</div>
</body>
</html>
<script>
function funhome(){
window.location = "./index.html"
}
</script>