ToDo_paradygmaty/public/index.html

22 lines
618 B
HTML
Raw Permalink Normal View History

2024-06-20 10:55:46 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Todo List</h1>
<form id="todo-form">
<input type="text" id="todo-input" placeholder="Add a new task" required>
<button type="submit">Add</button>
</form>
<ul id="todo-list"></ul>
<button id="count-a-button">Count 'a' letters</button>
<div id="count-a-result"></div>
<script src="script.js"></script>
</body>
</html>