33 lines
977 B
HTML
33 lines
977 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
<script src="/scripts/notes_app.js"></script>
|
|
<link rel="stylesheet" href="/css/notes_app.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
<div id=mainHeader>
|
|
<h1>
|
|
Quick Notes
|
|
</h1>
|
|
<h6>
|
|
A sample note web app to demonstrate the usage of Promises/Async/Await.
|
|
</h6>
|
|
</div>
|
|
<div id=storageBrowser>
|
|
<div id=storageBrowserHeader>All Notes</div>
|
|
<div id=refreshButtonDiv>
|
|
<button type="button" id=refreshButton>R</button>
|
|
</div>
|
|
<div id=noteStorage></div>
|
|
</div>
|
|
<div id=addNoteDiv>
|
|
<button type="button" id=addNoteButton>+</button>
|
|
</div>
|
|
<div id=allNotesDiv>
|
|
</div>
|
|
</body>
|
|
</html> |