0% found this document useful (0 votes)
4 views1 page

Notes App: Create and Manage Notes

The document is an HTML template for a notes application. It includes a navigation bar, a form for entering a title and description, and a section for displaying notes. The form has fields for user input and a submit button, with linked CSS and JavaScript files for styling and functionality.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Notes App: Create and Manage Notes

The document is an HTML template for a notes application. It includes a navigation bar, a form for entering a title and description, and a section for displaying notes. The form has fields for user input and a submit button, with linked CSS and JavaScript files for styling and functionality.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>notes app</title>
<link rel="stylesheet" href="./[Link]">
</head>

<body>
<nav>
<div class="logo">Notes App</div>
</nav>
<div class="container">
<form>
<div class="form-control">
<label for="title">Title</label>
<input type="text" id="text" placeholder="Enter Your Title"
autocomplete="off" name="title">
</div>
<div class="form-control">
<label for="desc">Description</label><input type="text" id="desc"
placeholder="Enter Your Desc"
autocomplete="off" name="desc">
</div>
<button class="submit">+</button>
</form>
</div>
<div class="notes">
</div>
<script src="./[Link]"></script>
</body>

</html>

You might also like