-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (34 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, intial-scale=1.0">
<title>Todo List</title>
<meta name="description" content="This is a website for setting your todoList">
<meta name="author" content="Wn">
<link rel="shortcut icon" href="./icon.png">
<link rel="bookmark" href="./icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./style/style.css">
</head>
<body>
<header>
<h1>Setup Your Personal Todo List</h1>
</header>
<form>
<input type="text" required>
<input type="date" required>
<button type="submit"><i class="fa-solid fa-plus"></i></button>
</form>
<br>
<br>
<div class="sort">
<button>Sort By Time</button>
</div>
<section class="todoList">
</section>
</body>
<script src="./app.js"></script>
</html>