-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.14 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
<!doctype html>
<html lang="en">
<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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<main>
<form class="add__task__container" id="formAddListItem">
<input id="addTaskField" type="text" disabled>
<button id="addTaskBtn">Add task</button>
</form>
<div class="todolist__container">
<div class="task__list__container">
<div class="task__lists" id="tasksList">
</div>
<form class="lists__control__panel" id="formAddList">
<input id="addListField" type="text">
<button id="addListBtn">Add new list</button>
</form>
</div>
<div class="task__container" id="toDoListTasks">
</div>
</div>
</main>
<script src="service.js"></script>
<script src="script.js"></script>
</body>
</html>