Untitled
unknown
plain_text
a year ago
607 B
10
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do Application</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>To-Do List</h1>
<form id="todoForm">
<input type="text" id="taskInput" placeholder="Enter your task" required>
<button type="submit">Add Task</button>
</form>
<div id="todoList" class="todo-list"></div>
</div>
<script src="script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment