-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.html
30 lines (30 loc) · 836 Bytes
/
tasks.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aufgaben</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<div class="top-bar">
<div class="title-container">
<h1>Aufgaben</h1>
</div>
</div>
</header>
<main class="content">
<div id="tasks-container">
<!-- Hier werden die Aufgaben angezeigt -->
</div>
<button id="add-task-button">Neue Aufgabe hinzufügen</button>
</main>
</div>
<footer>
Powered by M.D.
</footer>
<script type="module" src="tasks.js"></script>
</body>
</html>