404.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Simple 404 page not found</title>
  8. <meta name="description" content="Simple 404 page not found">
  9. <!-- Above the fold styles -->
  10. <style>.wrapper {max-width:500px;margin:1rem auto;text-align:center;padding:0 1rem;}</style>
  11. <!-- Non blocking styles -->
  12. <link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  13. <!-- Fallback when JavaScript is not available -->
  14. <noscript><link rel="stylesheet" href="styles.css"></noscript>
  15. <!-- Assync scripts -->
  16. <script type="text/javascript" src="scripts.js" async></script>
  17. <!-- PWA stuff -->
  18. <link rel="manifest" href="manifest.json">
  19. <meta name="theme-color" content="white">
  20. <link rel="apple-touch-icon" href="apple-touch-icon.png">
  21. </head>
  22. <body>
  23. <div class="wrapper">
  24. <img src="sad.png" width="90" height="90" alt="icon"/>
  25. <h2>Simple Node Server Not Found</h2>
  26. </div>
  27. </body>
  28. </html>