-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (70 loc) · 2.15 KB
/
index.html
File metadata and controls
77 lines (70 loc) · 2.15 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
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
<!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" />
<title>To-do List</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Custom JS -->
<script defer src="js/app.js"></script>
<!-- Font awesome icons -->
<script
defer
src="https://kit.fontawesome.com/fc9346f24c.js"
crossorigin="anonymous"
></script>
</head>
<body>
<section class="todo-wrap">
<div class="todo__inner">
<!-- Todo header -->
<div class="todo__header">
<div class="todo__img-wrap">
<img src="img/1.jpg" alt="Shaydee Coder" class="todo__img" />
</div>
<div class="todo__user-wrap">
<h3 class="todo__user">Todo List</h3>
<p class="todo__user-role">
Click the "+" button to add your todo lists
</p>
</div>
</div>
<!-- Todo body -->
<div class="todo__body">
<ul class="todo__items">
<!-- <li class="todo__item">
<input
type="checkbox"
name="todo__check-btn"
id="item-1"
class="todo__select"
/>
<label for="item-1">Build home page of portofolio</label>
<i class="far fa-trash-alt todo__delete"></i>
</li> -->
</ul>
</div>
<!-- Todo footer -->
<div class="todo__footer">
<button class="btn--clear-all">Clear All</button>
</div>
</div>
<!-- Todo Time -->
<div class="todo__time-wrap">
<div class="todo__time">
<h3 class="time__date--numeric">22</h3>
<p class="time__date--month_year">June 2021</p>
<p class="time__date--day">Tuesday</p>
</div>
<div class="todo__add">
<a href="#" class="todo__btn--add">
<i class="fas fa-plus"></i>
</a>
</div>
</div>
<div class="todo__box"></div>
</section>
</body>
</html>