33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
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=addNoteDiv>
|
|
<button type="button" id=addNoteButton>+</button>
|
|
</div>
|
|
<div id=noteFormDiv>
|
|
<form id=noteForm>
|
|
<input type="text" name="noteTitle" id="inputTitle" placeholder="Enter title...">
|
|
<div>
|
|
<textarea name=noteText id=noteText placeholder="Enter notes..."></textarea>
|
|
</div>
|
|
<button type="button" id=saveNoteButton>Save</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |