1 | <!DOCTYPE html> |
2 | <html> |
3 | <head> |
4 | <meta http-equiv="content-type" content="text/html; charset=utf-8"> |
5 | <title>Error 404 - Not Found</title> |
6 | <style> |
7 | @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,500&display=swap'); |
8 | html{ |
9 | display: flex; |
10 | align-items: center; |
11 | justify-content: center; |
12 | height: 100vh; |
13 | font-family: 'Fira Sans', sans-serif; |
14 | line-height: 1.4; |
15 | color: #fff; |
16 | } |
17 | body { |
18 | display: flex; |
19 | align-items: center; |
20 | justify-content: center; |
21 | background-color: #e54120; |
22 | color: #fff; |
23 | padding: 0; |
24 | margin: 0; |
25 | box-sizing: border-box; |
26 | } |
27 | div { |
28 | display: block; |
29 | vertical-align: middle; |
30 | max-width: 800px; |
31 | padding: 40px; |
32 | } |
33 | a { |
34 | color: #fff; |
35 | } |
36 | </style> |
37 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
38 | </head> |
39 | <body> |
40 | <div> |
41 | <h1>404 Not Found</h1> |
42 | <p>The 404 (Not Found) status code indicates that the origin server did not find a current representation for the target resource or is not willing to disclose that one exists. A 404 status code does not indicate whether this lack of representation is temporary or permanent; the 410 (Gone) status code is preferred over 404 if the origin server knows, presumably through some configurable means, that the condition is likely to be permanent.</p> |
43 | <a href="/">Back to home</a> |
44 | </div> |
45 | </body> |
46 | </html> |
47 |
|