-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
81 lines (77 loc) · 2.25 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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" />
<link rel="stylesheet" href="css/style.css" />
<title>DOM</title>
</head>
<body>
<header class="card">
<h2>JISAN'S TODO</h2>
<form>
<input id="todoInput" type="text" class="todo-input" />
<input id="addBtn" type="submit" value="Add Todo" class="add-btn btn" />
</form>
</header>
<div class="todos-container">
<div class="incomplete-todos card">
<h2>Active Todos</h2>
<ul class="active-todo-lists">
<li>
<input type="checkbox" name="" id="" />
<label for="">Todo5</label>
<input type="text" />
<button class="btn edit-btn">Edit</button>
<button class="btn delete-btn">Delete</button>
</li>
<li>
<input type="checkbox" name="" id="" />
<label for="">Todo6</label>
<input type="text" />
<button class="btn edit-btn">Edit</button>
<button class="btn delete-btn">Delete</button>
</li>
<li>
<input type="checkbox" name="" id="" />
<label for="">Todo7</label>
<input type="text" />
<button class="btn edit-btn">Edit</button>
<button class="btn delete-btn">Delete</button>
</li>
</ul>
</div>
<div class="completed-todos card">
<h2>Completed Todos</h2>
<ul class="complete-todo-lists">
<li>
<input checked type="checkbox" name="" id="" />
<label for="">Todo1</label>
<input type="text" />
<button class="delete-btn btn">Delete</button>
</li>
<li>
<input checked type="checkbox" name="" id="" />
<label for="">Todo2</label>
<input type="text" />
<button class="delete-btn btn">Delete</button>
</li>
<li>
<input checked type="checkbox" name="" id="" />
<label for="">Todo3</label>
<input type="text" />
<button class="delete-btn btn">Delete</button>
</li>
<li>
<input checked type="checkbox" name="" id="" />
<label for="">Todo4</label>
<input type="text" />
<button class="delete-btn btn">Delete</button>
</li>
</ul>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>