Files
FH/WS24_25/WebTech/web-pruefung-projekt/aufgabe5/todo-list.html
2025-02-04 20:42:51 +01:00

37 lines
646 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>ToDo-Liste</title>
<style>
table {
border-collapse: collapse;
}
table,
tr,
td,
th {
border: 1px solid black;
padding: 5px;
}
</style>
</head>
<body>
<h1>Meine ToDos</h1>
<table>
<thead>
<tr>
<th>Erledigt?</th>
<th>ToDo</th>
</tr>
</thead>
<tbody></tbody>
</table>
<p><input><button>Hinzufügen...</button></p>
<script src="todo-script.js"></script>
</body>
</html>