-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List App</title>
<script
src="https://kit.fontawesome.com/39f553a50f.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
</head>
<body>
<section class="ToDoSection">
<header>
<h2 id="text-to"><span>To-Do List</span> </h2>
</header>
<form id="new-task-form">
<input type="text" class="todo-input" placeholder="ADD Your Task">
<button type="submit" class="todo-button">ADD</button>
<button id="SaveToDo">
<i class="fa-solid fa-check"></i>
</button>
</form>
</section>
<div>
<ul class="todo-list"></ul>
</div>
<script src="script.js"></script>
</body>
</html>