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 1.0KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  8. <script src="/scripts/notes_app.js"></script>
  9. <link rel="stylesheet" href="/css/notes_app.css" type="text/css">
  10. </head>
  11. <body>
  12. <div id=mainHeader>
  13. <h1>
  14. Quick Notes
  15. </h1>
  16. <h6>
  17. A sample note web app to demonstrate the usage of Promises/Async/Await.
  18. </h6>
  19. </div>
  20. <div id=addNoteDiv>
  21. <button type="button" id=addNote>+</button>
  22. </div>
  23. <div id=noteFormDiv>
  24. <form id=noteForm>
  25. <input type="text" name="noteTitle" id="input1" placeholder="Enter title...">
  26. <div>
  27. <textarea name=noteText id=memo placeholder="Enter notes..."></textarea>
  28. </div>
  29. <button type="button" id=saveNote>Save</button>
  30. </form>
  31. </div>
  32. </body>
  33. </html>