-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (55 loc) · 1.62 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
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="ToDo List." />
<meta charset="utf-8" />
<title>add todo</title>
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
</head>
<body>
<header></header>
<form id="add-todo" class="addbut">
<label for="todo"
>ToDoList
<input
placeholder="Add your task"
type="text"
name="description"
id="todo"
class="todo"
value=""
/></label>
<button
aria-label="add"
type="submit"
name="add"
value="ADD"
id="add"
class="fas fa-plus-circle add"
></button>
</form>
<div class="sort-buttons">
<button aria-label="add" id="sortList" class="sort" name="sort">
Sort By Description
</button>
<button aria-label="add" id="sortListID" class="sort" name="sort2">
Sort By ID
</button>
</div>
<h1 class="head">To Do List</h1>
<h1 class="head">Mark List</h1>
<section>
<div id="todo-container" class="todocontainer "><ul></ul></div>
<div id="markTodo-container" class="markTodocontainer"><ul></ul></div>
</section>
</body>
<script type="text/javascript" src="./logic.js"></script>
<script type="text/javascript" src="./dom.js"></script>
</html>