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 | <meta name="title" content="Error 404 - Not Found" /> |
7 | <meta name="description" content="Resource not found" /> |
8 | <meta property="og:site_name" content="Josh Stockin" /> |
9 | <meta property="og:title" content="Error 404 - Not Found" /> |
10 | <meta property="og:description" content="Resource not found" /> |
11 | <meta property="og:type" content="website" /> |
12 | <meta property="og:image" content="/static/favicon.png" /> |
13 | <style> |
14 | @import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,500&display=swap'); |
15 | html, body{ |
16 | display: flex; |
17 | align-items: center; |
18 | justify-content: center; |
19 | } |
20 | * {color: #fff;} |
21 | html { |
22 | height: 100vh; |
23 | font-family: 'Fira Sans', sans-serif; |
24 | line-height: 1.4; |
25 | } |
26 | body { |
27 | background-color: #e54120; |
28 | padding: 0; |
29 | margin: 0; |
30 | box-sizing: border-box; |
31 | } |
32 | div { |
33 | display: block; |
34 | vertical-align: middle; |
35 | max-width: 800px; |
36 | padding: 40px; |
37 | } |
38 | </style> |
39 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
40 | </head> |
41 | <body> |
42 | <div> |
43 | <h1>404 Not Found</h1> |
44 | <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> |
45 | <a href="/">Back to home</a> |
46 | </div> |
47 | </body> |
48 | </html> |
49 |
|