-
Notifications
You must be signed in to change notification settings - Fork 0
/
Successful.html
86 lines (78 loc) · 2.03 KB
/
Successful.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
<!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 Success | Gearbest.com</title>
<link rel="shortcut icon" href="https://img.ecommercedb.com/gearbest.com-75ioegxvb6cx.png" type="image/x-icon">
<script
src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"
></script>
<script src="party.min.js"></script>
<style>
* {
font-family: "Open Sans", "sans-serif";
}
#success-payment>img{
width:100%;
margin-top: 50px;
}
#success-payment{
width:50%;
height:50%;
margin: auto;
}
#backbtn{
display: flex;
justify-content: center;
text-align: center;
margin: auto;
}
#backbtn>a:hover{
text-decoration: underline;
}
#backbtn>a{
/* text-decoration: none; */
color:teal;
font-size: 20px;
font-weight: bold;
}
@media only screen and (max-width:770px){
#success-payment>img{
width:100%;
margin-top: 130px;
}
#success-payment{
width:80%;
height:80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
#backbtn{
display: flex;
justify-content: center;
text-align: center;
margin: auto;
}
}
</style>
</head>
<body>
<div id="success-payment">
<img src="https://colombocme.org/wp-content/uploads/2019/03/Paymentsuccessful21.png">
</div>
<div id="backbtn"><a href="index.html">Go to Homepage</a></div>
</body>
</html>
<script>
party.settings.debug = false;
document.body.addEventListener("click", function (e) {
e.preventDefault();
party.confetti(e);
})
</script>