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

1234567891011121314151617181920212223242526272829
  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=addNoteButton>+</button>
  22. </div>
  23. <div id=allNotesDiv>
  24. </div>
  25. <div id=saveProgressDiv>
  26. <progress id=saveProgress value=0 max=100></progress>
  27. </div>
  28. </body>
  29. </html>