index.html 893 B

12345678910111213141516171819202122
  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>Basic single file HTML</title>
  8. <meta name="description" content="Simgle file page basic page">
  9. <link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
  10. <noscript><link rel="stylesheet" href="styles.css"></noscript>
  11. <script type="text/javascript" src="scripts.js" async></script>
  12. <link rel="manifest" href="manifest.json">
  13. <meta name="theme-color" content="white">
  14. <link rel="apple-touch-icon" href="apple-touch-icon.png">
  15. </head>
  16. <body>
  17. <div class="wrapper">
  18. <img src="favicon-32x32.png" width="16" height="16" alt="icon"/>
  19. <p>Basic Node Single file Server Setup</p>
  20. </div>
  21. </body>
  22. </html>