-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (48 loc) · 1.97 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
<!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="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<section class="background-top">
<section class="background-top--inner"></section>
</section>
<form class="todo">
<h2>TODO <i class="todo__dark-mode far fa-moon"></i></h2>
<section class="todo--create">
<button id="create-btn"></button>
<input type="text" placeholder="Create a new to do" id="create-txt">
</section>
<section class="todo__list">
<ol>
<!--<li>
<div class="round-checkbox">
<input type="checkbox" id="checkbox" />
<label for="checkbox"></label>
</div>
<input type="text" value="">
<button id="edit" class="todo__list__edit">Edit</button>
<button id="delete" class="todo__list__delete"><i class="far fa-trash-alt"></i></button>
</li> -->
</ol>
<footer class="todo__list__footer">
<span class="todo__list__footer--items-left">0 items left</span>
<a class="todo__list__footer--clear-completed">Clear Completed</a>
</footer>
</section>
<nav class="todo__read">
<a class="todo__read--all selected">All</a>
<a class="todo__read--active">Active</a>
<a class="todo__read--completed">Completed</a>
</nav>
<section class="todo__reorder">Drag and drop to reorder list</section>
<footer class="todo__footer">Powered by Vercel</footer>
</form>
<script src="js/functions.js"></script>
</body>
</html>