503-mycustom.http
· 2.1 KiB · Text
Исходник
HTTP/1.0 503 Service Unavailable
Cache-Control: no-cache
Connection: close
Content-Type: text/html
<!DOCTYPE html>
<html>
<head>
<title>Site Maintenance</title>
<meta charset="utf-8" />
<meta name="robots" content="noindex" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
text-align: center;
padding: 20px;
font: 20px Helvetica, sans-serif;
color: #333;
background-color: #ffffff
}
@media (min-width: 768px) {
body {
padding-top: 150px;
}
}
h1 {
font-size: 50px;
}
article {
display: block;
text-align: left;
max-width: 650px;
margin: 0 auto;
}
a {
color: #dc8100;
text-decoration: none;
}
a:hover {
color: #333;
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
body {
color: #efe8e8;
background-color: #2e2929
}
a {
color: #dc8100;
}
a:hover {
color: #efe8e8;
}
}
</style>
</head>
<body>
<article>
<h1>We’ll be back soon!</h1>
<div>
<p>
We are really sorry for the inconvenience but we’re performing some
maintenance at the moment. Please check back later.
If you continue to see this message or need to you can always
<a href="mailto:hola@informatiq.services">contact us</a>,
otherwise we’ll be back online shortly!
</p>
<p>— The Technical Team of <a href="//palma.solutions">Palma Solutions</a></p>
</div>
</article>
</body>
</html>
1 | HTTP/1.0 503 Service Unavailable |
2 | Cache-Control: no-cache |
3 | Connection: close |
4 | Content-Type: text/html |
5 | |
6 | <!DOCTYPE html> |
7 | <html> |
8 | <head> |
9 | <title>Site Maintenance</title> |
10 | <meta charset="utf-8" /> |
11 | <meta name="robots" content="noindex" /> |
12 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
13 | <style> |
14 | body { |
15 | text-align: center; |
16 | padding: 20px; |
17 | font: 20px Helvetica, sans-serif; |
18 | color: #333; |
19 | background-color: #ffffff |
20 | } |
21 | @media (min-width: 768px) { |
22 | body { |
23 | padding-top: 150px; |
24 | } |
25 | } |
26 | h1 { |
27 | font-size: 50px; |
28 | } |
29 | article { |
30 | display: block; |
31 | text-align: left; |
32 | max-width: 650px; |
33 | margin: 0 auto; |
34 | } |
35 | a { |
36 | color: #dc8100; |
37 | text-decoration: none; |
38 | } |
39 | a:hover { |
40 | color: #333; |
41 | text-decoration: none; |
42 | } |
43 | @media (prefers-color-scheme: dark) { |
44 | body { |
45 | color: #efe8e8; |
46 | background-color: #2e2929 |
47 | } |
48 | a { |
49 | color: #dc8100; |
50 | } |
51 | a:hover { |
52 | color: #efe8e8; |
53 | } |
54 | } |
55 | </style> |
56 | </head> |
57 | <body> |
58 | <article> |
59 | <h1>We’ll be back soon!</h1> |
60 | <div> |
61 | <p> |
62 | We are really sorry for the inconvenience but we’re performing some |
63 | maintenance at the moment. Please check back later. |
64 | If you continue to see this message or need to you can always |
65 | <a href="mailto:hola@informatiq.services">contact us</a>, |
66 | otherwise we’ll be back online shortly! |
67 | </p> |
68 | <p>— The Technical Team of <a href="//palma.solutions">Palma Solutions</a></p> |
69 | </div> |
70 | </article> |
71 | </body> |
72 | </html> |