index.html 1.2 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>Single page app node server with no dependencies</title>
  8. <meta name="description" content="Simgle page basic server optimized for speed and PWA">
  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. <noscript><link rel="stylesheet" href="styles.css"></noscript>
  14. <!-- Assync scripts -->
  15. <script type="text/javascript" src="scripts.js" async></script>
  16. <!-- PWA stuff -->
  17. <link rel="manifest" href="manifest.json">
  18. <meta name="theme-color" content="white">
  19. <link rel="apple-touch-icon" href="apple-touch-icon.png">
  20. </head>
  21. <body>
  22. <div class="wrapper">
  23. <img src="apple-touch-icon.png" width="90" height="90" alt="icon"/>
  24. <h2>Simple Node Server For A Single Page App</h2>
  25. <img src="preview.jpg" width="500" height="258" alt="preview"/>
  26. </div>
  27. </body>
  28. </html>