-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.24 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>load of pixels | To-Do App</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="Busta-icon-254_254.jpg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<h1 class="LOP">load of pixels</h1>
<h1 class="design-dev">Design and Development</h1>
<div class="to-do-app">
<div class="container">
<header>
<h1>To-Do List</h1>
</header>
<p>Simple To do app, using HTML CSS and JavaScript.<br>
</p>
</div>
<main>
<form>
<input type="text" placeholder="Enter task" required>
<input type="date" placeholder="Due date">
<button type="submit">Add</button>
</form>
<ul></ul>
<ul>
<!-- Existing tasks will be added dynamically using JavaScript -->
</ul>
</main>
</div>
<footer>
<h3>© 2024 tadyPi-App</h3>
</footer>
<script src="script.js"></script>
</body>
</html>