-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (30 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<link rel="icon" href="assets/check-list.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section class="container">
<div class="todo-app">
<h1>To-Do List</h1>
<img src="assets/check-list.png" alt="To-Do List Icon">
<div id="addTask">
<form class="row">
<input type="text" placeholder="Add a new Task" id="newTaskInput" autocomplete="off">
<input type="submit" value="Add" id="newTaskSubmit">
</form>
</div>
<ul class="list-content">
</ul>
</div>
</section>
<footer>This site was made only for Education Purposes by
<a href="https://softiacodes.com/" target="_blank">Lucia Esteves</a> ©2023
</footer>
<script src="index.js"></script>
</body>
</html>