-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
88 lines (61 loc) · 2.48 KB
/
index1.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
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>Title</title>
</head>
<body>
<div class="todo-container">
<div class="todo-header">
<h1 class="todo-title">todos</h1>
</div>
<div class="todo-add">
<button class="todo-all_select-all" aria-label="Mark all as completed">
</button>
<input class="todo-all_input" type="text" placeholder="What needs to be done?" aria-label="Add todo field">
</div>
<div class="todo-list">
<div class="todo-item __ready">
<input type="checkbox" class="todo-item_ready-mark" value="cb_html" checked="checked"
aria-label="Mark as not completed">
<textarea class="todo-item_text">HTML</textarea>
<button class="todo-item_remove" aria-label="Remove"> Remove </button>
</div>
<div class="todo-item __ready">
<input type="checkbox" class="todo-item_ready-mark" value="cb_html"
aria-label="Mark as completed">
<textarea class="todo-item_text">CSS</textarea>
<button class="todo-item_remove" aria-label="Remove"> Remove </button>
</div>
<div class="todo-item __ready">
<input type="checkbox" class="todo-item_ready-mark" value="cb_html"
aria-label="Mark as completed">
<textarea class="todo-item_text">JS</textarea>
<button class="todo-item_remove" aria-label="Remove"> Remove </button>
</div>
</div>
<div class="todo-action-bar">
<div class="todo-action-bar_counter" aria-label="Count of not completed">
x todos
</div>
<div class="todo-filter" data-filter="all" aria-label="Filter: show all todos">
<button class="todo-filter __active" >
All
</button>
</div>
<div class="todo-filter" data-filter="ready" aria-label="Filter: show active todos">
<button class="todo-filter" >
Active
</button>
</div>
<div class="todo-filter" data-filter="unready" aria-label="Filter: show completed todos">
<button class="todo-filter" >
Completed
</button>
</div>
<button class="todo-action-bar_remove-complited"> Clear completed</button>
</div>
</div>
</body>
</html>