-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.html
More file actions
66 lines (58 loc) · 2.19 KB
/
Copy pathtodo.html
File metadata and controls
66 lines (58 loc) · 2.19 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
<!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 bar color on Mobile devices for Firefox, Chrome & Opera -->
<meta name="theme-color" content="#867AE9" />
<!-- Title bar color on Windows Phone -->
<meta name="nsapplication-navbutton-color" content="#867AE9" />
<!-- Title bar color on safari/IOS -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- favicon -->
<link
rel="shortcut icon"
href="./assets/images/favicon.jpg"
type="image/x-icon"
/>
<!-- custom css link -->
<link rel="stylesheet" href="./components/stylesheets/style.css" />
<!-- custom js link -->
<script src="./components/js/app.js" defer></script>
<!-- Iconscout Link For Icons -->
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<!-- 3rd Page Title -->
<title>To-do App</title>
</head>
<body>
<div class="page-heading">
<h1>Got Plans For Today<span>?</span></h1>
</div>
<div class="wrapper">
<div class="task-input">
<img src="./assets/images/bars-icon.svg" alt="icon" />
<input type="text" placeholder="Add a new task" />
<img
class="img_two"
src="./assets/images/plus.svg"
alt="icon"
width="40"
/>
</div>
<div class="controls">
<div class="filters">
<span class="active" id="all">All</span>
<span id="pending">Pending</span>
<span id="completed">Completed</span>
</div>
<button class="clear-btn">Clear All</button>
</div>
<ul class="task-box"></ul>
</div>
</body>
</html>