-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<script
src="https://kit.fontawesome.com/08d3137cac.js"
crossorigin="anonymous"
></script>
<title>to-do list</title>
</head>
<body>
<form class="todoSection">
<input autofocus type="text" class="todoInput" placeholder="Write a new task..." />
<button class="addTodo" type="submit">
<i class="fa-plus fa-solid "></i>
</button>
</form>
<header>
<h1>Todo List</h1>
</header>
<section class="todoList">
<!-- <div class="todo">
<div class="doneTodo">
<i class="fa-solid fa-check done"></i>
</div>
<input type="text" class="todoListInput" value="">
<button class="deleteTodo">
<i class="fa-solid fa-trash-can"></i>
</button>
</div> -->
</section>
<div class="msg">
<i class="fa-solid fa-triangle-exclamation"></i>
<p>Please enter a new task</p>
</div>
<script src="./script.js" defer></script>
</body>
</html>