-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (53 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
<!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="./assets/images/styles.css" />
<script src="https://kit.fontawesome.com/b862bb0d81.js" crossorigin="anonymous"></script>
</script>
<title>Bucket List</title>
</head>
<body>
<header></header>
<section class="list-container">
<div class="container">
<h2>
Bucket List.
<input type="checkbox" id="switch" /> <label for="switch" class="switch-label">Toggle.</label>
</h2>
<div class="list">
<div class="list-item">
<input type="text" placeholder="Add a task to the list .........">
<i class="fas fa-plus"></i>
</div>
<ol class="bucket-list">
<div class="taskbar list-item">
<div>3 items</div>
<div id="all">All</div>
<div id="pending">Pending</div>
<div id="complete">Complete</div>
</div>
<div class="clear">Clear</div>
</ol>
<div class="chores">
<div class="item1"> <input type="radio" id="radio1"> <label for="radio1" class="radio1-label"> Dev Meet</label> </div>
<div class="item2"> <input type="radio" id="radio2"> <label for="radio2" class="radio2-label"> Finishing the js assignment</label></div>
<div class="item3"> <input type="radio" id="radio3"> <label for="radio3" class="radio3-label"> Client colab</label></div>
</div>
</div>
</div>
</section>
<footer>
<div>
<a href="https://github.com/alfredfrancis68" target="_blank">Alfred Francis.</a>
</div>
<div>
<a href="https://www.instagram.com/_alfred_francis_/" target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://github.com/alfredfrancis68?tab=repositories" target="_blank"><i class="fa fa-github"></i></a>
<a href="#" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</footer>
</body>
</html>