-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (44 loc) · 1.89 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/favicon.png">
<title>My ToDo App 📝</title>
</head>
<body>
<div id="container">
<div class="github-icon">
<a href="https://github.com/HamzaZaidiX/ToDo-App" target="_blank"><img src="https://img.icons8.com/material-sharp/30/000000/github.png"/></a>
</div>
<h1>My ToDo</h1>
<div class="controls">
<input type="text" id="input" placeholder="Enter Your Task"><br>
<p></p>
<button type="button" id="add"><img src="https://img.icons8.com/fluency/30/000000/add.png"/> Add</button>
<button type="button" id="remove"><img src="https://img.icons8.com/fluency/30/000000/filled-trash.png"/> Remove</button>
</div>
<ul id="list">
<li class="mycheck">
<input type="checkbox" id="check"><label>Jog around the park</label>
</li>
<li class="mycheck">
<input type="checkbox" id="check"><label>Read for 1 hour</label>
</li>
<li class="mycheck">
<input type="checkbox" id="check"><label>Pick up groceries</label>
</li>
<li class="mycheck">
<input type="checkbox" id="check" checked><label>10 min meditation</label>
</li>
</ul>
</div>
<div class="ftr" style="text-align: center; padding-top: 10px;">
<footer>Crafted with ❤️ by <span> <a href="https://github.com/HamzaZaidiX" target="_blank">Hamza Zaidi</a></span>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>