index.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!-- This is a static file -->
  2. <!-- served from your routes in server.js -->
  3. <!-- You might want to try something fancier: -->
  4. <!-- html/nunjucks docs: https://mozilla.github.io/nunjucks/ -->
  5. <!-- pug: https://pugjs.org/ -->
  6. <!-- haml: http://haml.info/ -->
  7. <!-- hbs(handlebars): http://handlebarsjs.com/ -->
  8. <!DOCTYPE html>
  9. <html lang="en">
  10. <head>
  11. <title>Welcome to Glitch!</title>
  12. <meta name="description" content="A cool thing made with Glitch">
  13. <link id="favicon" rel="icon" href="https://glitch.com/edit/favicon-app.ico" type="image/x-icon">
  14. <meta charset="utf-8">
  15. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  16. <meta name="viewport" content="width=device-width, initial-scale=1">
  17. <!-- import the webpage's stylesheet -->
  18. <link rel="stylesheet" href="/style.css">
  19. <!-- import the webpage's client-side javascript file -->
  20. <script src="/client.js" defer></script>
  21. </head>
  22. <body>
  23. <header>
  24. <h1>
  25. A Dream of the Future
  26. </h1>
  27. </header>
  28. <main>
  29. <p class="bold">Oh hi,</p>
  30. <p>Tell me your hopes and dreams:</p>
  31. <form>
  32. <input name="dream" type="text" maxlength="100" placeholder="Dreams!" aria-labelledby="submit-dream">
  33. <button type="submit" id="submit-dream">Submit Dream</button>
  34. </form>
  35. <section class="dreams">
  36. <ul id="dreams"></ul>
  37. </section>
  38. </main>
  39. <footer>
  40. Made with <a href="https://glitch.com">Glitch</a>!
  41. </footer>
  42. <!-- include the Glitch button to show what the webpage is about and
  43. to make it easier for folks to view source and remix -->
  44. <div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
  45. <script src="https://button.glitch.me/button.js"></script>
  46. </body>
  47. </html>