-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-DoList</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>
TODO APP
</h1>
<div class="container">
<form>
<input type="text" class="form__input" placeholder="Write and hit enter to add" autocomplete="off">
<button class="add-btn">
ADD
</button>
</form>
<ul class="To-DoList">
<!-- <li class="To-DoList__li">
<input type="checkbox" id="input__checkbox-1" >
<label for="input__checkbox-1" class="custom-checkbox">
<svg fill="transparent" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed">
<path d="M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"/></svg>
</label>
<label for="input__checkbox-1" class="todo-text">
Html,css,js
</label>
<button class="del-btn">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed">
<path d="M280-120q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM360-280h80v-360h-80v360Zm160 0h80v-360h-80v360ZM280-720v520-520Z"/></svg>
</button>
</li> -->
</ul>
</div>
<script src="script.js"></script>
</body>
</html>