projPara/todo.html

19 lines
580 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="logo">.TODO!</div>
<input class='input' type="text" id="todoInput" placeholder="Enter task">
<button class='button' id="addBtn">Add task</button>
<ul id="todoList"></ul>
</body>
</html>