mdt5-2-webapp/html/index.html

33 lines
977 B
HTML
Raw Normal View History

2020-05-21 11:01:46 +02:00
<!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>
2020-05-21 11:01:46 +02:00
<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>
2020-06-05 13:38:05 +02:00
<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>
2020-05-21 11:01:46 +02:00
</body>
</html>