-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (45 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
<!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">
<title>To Do List</title>
<script src="https://kit.fontawesome.com/85c1b76742.js" crossorigin="anonymous"></script>
<script defer src="script.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header class="header">
<div class="title">
<h1>To Do List</h1>
</div>
<div class="sub-title">
<h2>Tasks: <span class="task-counter">1</span></h2>
<p>Clear Tasks</p>
</div>
<form class="input-title" action="">
<input class="input-field" type="text" placeholder="Add a task">
<button><i class="fa-solid fa-plus"></i></button>
</form>
</header>
<main class="body">
<ul class="list-container">
</ul>
</main>
</div>
</body>
</html>
<!--
<li class="list">
<span class="input-checkbox"><input type="checkbox" name="" id=""></span>
<span class="paragraph"><p>Car Wash</p></span>
<span class="delete"><i class="fa-solid fa-trash"></i></span>
</li>
<li class="list">
<span class="input-checkbox"><input type="checkbox" name="" id=""></span>
<span class="paragraph"><p>Car Wash bla bla bla</p></span>
<span class="delete"><i class="fa-solid fa-trash"></i></span>
</li>
-->