You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 630B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Shopping List</title>
  6. <link rel="stylesheet" href="/style.css">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <meta name="apple-mobile-web-app-capable" content="yes">
  9. <link rel="apple-touch-icon" href="icon.png">
  10. </head>
  11. <body>
  12. <div id="container">
  13. <form id="add">
  14. <input class="name">
  15. <button class="submit" type="submit">+</button>
  16. <div class="suggestions hidden"></div>
  17. </form>
  18. <div id="list">
  19. </div>
  20. </div>
  21. <script src="/client.js"></script>
  22. <script src="/script.js"></script>
  23. </body>
  24. </html>