| 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 |             @font-face { | 
| 15 |                 font-family: 'Fira Sans'; | 
| 16 |                 src: url(https://joshstock.in/static/fonts/FiraSans-Regular.ttf) format('truetype'); | 
| 17 |                 font-weight: 400; | 
| 18 |                 font-style: normal; | 
| 19 |             } | 
| 20 |             @font-face { | 
| 21 |                 font-family: 'Fira Sans'; | 
| 22 |                 src: url(https://joshstock.in/static/fonts/FiraSans-Bold.ttf) format('truetype'); | 
| 23 |                 font-weight: 700; | 
| 24 |                 font-style: normal; | 
| 25 |             } | 
| 26 |             html, body{ | 
| 27 |                 display: flex; | 
| 28 |                 align-items: center; | 
| 29 |                 justify-content: center; | 
| 30 |             } | 
| 31 |             * {color: #fff;} | 
| 32 |             html { | 
| 33 |                 height: 100vh; | 
| 34 |                 font-family: 'Fira Sans', sans-serif; | 
| 35 |                 line-height: 1.4; | 
| 36 |             } | 
| 37 |             body { | 
| 38 |                 background-color: #e54120; | 
| 39 |                 padding: 0; | 
| 40 |                 margin: 0; | 
| 41 |                 box-sizing: border-box; | 
| 42 |             } | 
| 43 |             div { | 
| 44 |                 display: block; | 
| 45 |                 vertical-align: middle; | 
| 46 |                 max-width: 800px; | 
| 47 |                 padding: 40px; | 
| 48 |             } | 
| 49 |         </style> | 
| 50 |         <meta name="viewport" content="width=device-width, initial-scale=1"> | 
| 51 |     </head> | 
| 52 |     <body> | 
| 53 |         <div> | 
| 54 |             <h1>404 Not Found</h1> | 
| 55 |             <p>The 404 (Not Found) status code indicates that the origin server | 
| 56 |                 did not find a current representation for the target resource or | 
| 57 |                 is not willing to disclose that one exists. A 404 status code | 
| 58 |                 does not indicate whether this lack of representation is | 
| 59 |                 temporary or permanent; the 410 (Gone) status code is preferred | 
| 60 |                 over 404 if the origin server knows, presumably through some | 
| 61 |                 configurable means, that the condition is likely to be | 
| 62 |                 permanent.</p> | 
| 63 |             <a href="/">Back to home</a> | 
| 64 |         </div> | 
| 65 |     </body> | 
| 66 | </html> | 
| 67 | 
 |