-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.03 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
<!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>TODO</title>
<link rel="stylesheet" href="./css/styles.css" />
<link rel="shortcut icon" href="./images/profile.jpg" type="jpg" />
<script src="https://kit.fontawesome.com/f6e3b67683.js" crossorigin="anonymous"></script>
</head>
<body class="">
<header>
<div class="header__left"><i class="fa-solid fa-list-check"></i></div>
<div class="header__right">
<p>All tasks</p>
</div>
<div class="theme__toggle"><div class="switch"></div></div>
</header>
<main>
<article id="new">
<form action="" method="POST">
<input type="text" aria-label="Enter new Task" placeholder="Enter new task" name="task" />
<button>Add Task</button>
</form>
</article>
<section id="todos"></section>
<section class="plus">+</section>
</main>
<script src="./js/app.js" type="module"></script>
</body>
</html>