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

HTML Todo Application Code

Uploaded by

Amit Sharma
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

HTML Todo Application Code

Uploaded by

Amit Sharma
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="[Link]">
</head>

<body>
<h2>Todo App</h2>
<div class="todo">
<div class="input-area">
<input type="text">
<button>Add Task</button>
</div>
<div>
<h3>Tasks</h3>
</div>
<ul class="list">
</ul>
</div>

<script src="[Link]"></script>

</body>

</html>

You might also like