-
Notifications
You must be signed in to change notification settings - Fork 34
/
edit.html
82 lines (72 loc) · 2.87 KB
/
edit.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
70
71
72
73
74
75
76
77
78
79
80
81
82
<html lang="en">
<head>
<!--
-------------------------------------------------------------------------------------------------------------------------------------------------- ================================= layout: hacktoberfest-2020 title: Open Source author: Tasnim Zotder ===================================================================================================================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>kavindu | Using HTML - CSS , JS | 2020</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="edit.css">
<script src="edit.js"></script>
</head>
<body>
<div>
<h3 id="dayName">"Hacktoberfest" To-do</h3>
</div>
<div class="todoList">
<div class="cover-img">
<div class="cover-inner">
<!--<h3 id="dayName">hacktoberfest</h3>-->
</div>
</div>
<div class="content">
<form class="add">
<input type="text" name="add" placeholder="Add item...">
<div class="input-buttons">
<a href="#0" class="add-todo">
<i class="fas fa-plus add"></i>
</a>
</div>
</form>
<ul class="todos align">
<li>
<input type="checkbox" id="todo_1">
<label for="todo_1">
<span class="check"></span>
Grocery store
</label>
<i class="far fa-trash-alt delete"></i>
</li>
<li>
<input type="checkbox" id="todo_2">
<label for="todo_2">
<span class="check"></span>
Code a todo list
</label>
<i class="far fa-trash-alt delete"></i>
</li>
<li>
<input type="checkbox" id="todo_3">
<label for="todo_3">
<span class="check"></span>
Walk the dog
</label>
<i class="far fa-trash-alt delete"></i>
</li>
<li>
<input type="checkbox" id="todo_4">
<label for="todo_4">
<span class="check"></span>
Pay Netflix
</label>
<i class="far fa-trash-alt delete"></i>
</li>
</ul>
</div>
</div>
</body>
<script src="main.js"></script>
</html>