-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
69 lines (51 loc) · 1.8 KB
/
todo.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
<!DOCTYPE html>
<html lang="ru">
<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>Список задач</title>
<link rel="stylesheet" href="css/todo.css">
<link rel="stylesheet" href="css/ht.css">
<link rel="stylesheet" href="css/fonts.css">
</head>
<body>
<div class="container">
<div class="todoMenu">
<header class="headText">
<h2>Список задач</h2>
</header>
<nav class="inputPlace">
<input class="inputName" type="text" placeholder="Введите название задачи...">
<textarea class="inputDiskript" placeholder="Введите описание задачи..."></textarea>
</nav>
<div class="btnPlace">
<ul name="todos" class="filter">
<p class="filterText">Фильтр</p>
<li class="filter-li" id="all">Все</li>
<li class="filter-li" id="completed">Выполненные</li>
<li class="filter-li" id="uncompleted">Невыполненные</li>
</ul>
<button class="nightMode-btn" type="submit">
<img id="moonBtn" src= "/img/moon.png">
</button>
<button class="addTodo-btn" type="submit">
<img id="pushTodoIcon" src= "/img/push.png">
</button>
</div>
<div class="htListBox">
<ul class="htList">
</ul>
<div class="btbBox">
<button class="htClearButton">Очистить</button>
<button class="htSortButton">Отсортировать</button>
</div>
</div>
</div>
<div class="todo-container">
<ul class="todo-list"></ul>
</div>
</div>
<script src="/js/todoPage.js"></script>
</body>
</html>