-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./styles/css/styles.css">
</head>
<body>
<div class="todo-app">
<div class="todo-app__header">
<h1 class="todo-app__title">Todos</h1>
<label class="todo-app__search-label" for="search-text">Search</label>
<input class="todo-app__search" id="search-text" type="text" placeholder="What todo you are looking for?">
<label class="todo-app__custom-container">
<input class="todo-app__item-status" type="checkbox" id="hide-completed">
<p class="todo-app__item-text">Hide completed</p>
<span class="todo-app__custom-checkbox"></span>
</label>
</div>
<div class="todo-app__container">
<div id="todos" class="todo-app__todos"></div>
<form class="todo-app__item-new" id="new-todo">
<input class="todo-app__name" type="text" placeholder="What yo need to do?" name="text">
<button class="todo-app__button-add">+Add</button>
</form>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uuid/8.1.0/uuidv4.min.js"></script>
<script src="./todo.js"></script>
</body>
</html>