-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.46 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
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
<title>Список задач</title>
</head>
<body>
<form class="form">
<h1>Список дел</h1>
<div class="conteiner">
<div class="centred">
<div class="list">
<ul>
<li><input type="checkbox">Дело 1(Помыть полы)</li>
<li><input type="checkbox">Дело 2(Почистить картошку)</li>
<li><input type="checkbox">Дело 3(Убраться в комнате)</li>
<li><input type="checkbox">Дело 4(Собрать телевизор)</li>
<li><input type="checkbox">Дело 5(Сходить в магазин)</li>
</ul>
</div>
</div>
</div>
<input class="text_field" type="text" name="username" placeholder="Добавить задачу: " value="">
<button class="but" type="submit">Добавить</button>
<button class="but" type="button" onclick="filterTasks('all')">Все задачи</button>
<button class="but" type="button" onclick="filterTasks('done')">Выполненные задачи</button>
<button class="but" type="button" onclick="filterTasks('undone')">Невыполненные задачи</button>
</div>
</form>
</body>
</html>