This commit is contained in:
2025-02-04 20:42:51 +01:00
parent 20c1401458
commit 9844efeaad
895 changed files with 113154 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<!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>