-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path502.html
52 lines (51 loc) · 1.6 KB
/
502.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
<!DOCTYPE html>
<html>
<head>
<title>502 Error</title>
<style>
html,body {
height: 100%;
}
.box {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
width:100%;
height: 100%;
background: rgb(200,0,255);
background: linear-gradient(90deg, rgba(176,217,182,1) 0%, rgba(189,244,250,1) 47%, rgba(170,193,215,1) 100%);
background-size: 600% 100%;
animation: gradient 16s linear infinite;
animation-direction: alternate;
}
@keyframes gradient {
0% {background-position: 0%}
100% {background-position: 100%}
}
h1{
font-size: 50px;
}
p{
font-size: 25px;
font-weight: bold;
}
a{
color: green;
text-decoration: none;
}
</style>
</head>
<body>
<div class="box">
<div style="text-align: center;">
<h1>502 Error - Bad Gateway</h1>
<br>
<p>An unknown internal error occurred. Try restarting your browser.</p>
<br><br>
<p><a href="https://tinkertechlab.com/webhosting/http-status-codes/502?ref=tinkerhost-client-error&type=click&placement=502-error" target="_blank">Learn more about this error</a></p>
<br><br>
<p>This website is hosted with TinkerHost, <a href="https://tinkerhost.net?ref=client-error-page&type=click&placement=get-free-website-link">get your free website today</a>!</p>
</div>
</div>
</body>