12345678910111213141516171819202122 |
- <!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>Basic single file HTML</title>
- <meta name="description" content="Simgle file page basic page">
- <link rel="preload" href="styles.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
- <noscript><link rel="stylesheet" href="styles.css"></noscript>
- <script type="text/javascript" src="scripts.js" async></script>
- <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="favicon-32x32.png" width="16" height="16" alt="icon"/>
- <h2>Simple Node Server For A Single Page App</h2>
- </div>
- </body>
- </html>
|