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 977B

123456789101112131415161718192021222324252627282930313233
  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=storageBrowser>
  21. <div id=storageBrowserHeader>All Notes</div>
  22. <div id=refreshButtonDiv>
  23. <button type="button" id=refreshButton>R</button>
  24. </div>
  25. <div id=noteStorage></div>
  26. </div>
  27. <div id=addNoteDiv>
  28. <button type="button" id=addNoteButton>+</button>
  29. </div>
  30. <div id=allNotesDiv>
  31. </div>
  32. </body>
  33. </html>