index.html 614 B

123456789101112131415161718
  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="stylesheet" type="text/css" href="media/styles.css">
  10. <script type="text/javascript" src="media/scripts.js"></script>
  11. </head>
  12. <body>
  13. <div class="wrapper">
  14. <img src="media/favicon.ico" alt="icon"/>
  15. <p>Basic Node Single file Server Setup</p>
  16. </div>
  17. </body>
  18. </html>