Untitled

mail@pastecode.io avatar
unknown
plain_text
14 days ago
607 B
2
Indexable
Never
<!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>
Leave a Comment