index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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: http://mozilla.github.io/nunjucks/ -->
  5. <!-- jade: http://jade-lang.com/ -->
  6. <!-- haml: http://haml.info/tutorial.html -->
  7. <!-- hbs(handlebars): http://handlebarsjs.com/expressions.html -->
  8. <!DOCTYPE html>
  9. <html>
  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://gomix.com/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. <link rel="stylesheet" href="/public/style.css">
  18. </head>
  19. <body>
  20. <header>
  21. <h1>
  22. A Dream of the Future
  23. </h1>
  24. </header>
  25. <main>
  26. <p class="bold">Oh hi,</p>
  27. <p>Tell me your hopes and dreams:</p>
  28. <form>
  29. <input type="text" maxlength="100" placeholder="I wish to fly">
  30. <button type="submit">Submit</button>
  31. </form>
  32. <section class="dreams">
  33. <ul id="dreams">
  34. </ul>
  35. </section>
  36. </main>
  37. <!-- Your web-app is https, so your scripts need to be too -->
  38. <script src="https://code.jquery.com/jquery-2.2.1.min.js"
  39. integrity="sha256-gvQgAFzTH6trSrAWoH1iPo9Xc96QxSZ3feW6kem+O00="
  40. crossorigin="anonymous"></script>
  41. <script src="/public/client.js"></script>
  42. </body>
  43. </html>