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