-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
38 lines (34 loc) · 797 Bytes
/
404.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 page</title>
<style>
body{
background: url("error-404.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
font-family: Nunito, sans-serif;
text-align: center;
}
h3{
text-align: center;
color: royalblue;
margin-top: 60vh;
}
p{
color: rgba(28,28,28,0.8);
font-size: .7rem;
font-weight: 500;
}
</style>
</head>
<body>
<div>
<h3>This Account has been suspended for uploading invalid payment receipt</h3>
<p>Please contact the Admin or Customer Support to rectify this problem.</p>
</div>
</body>
</html>