-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.37 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Todoer</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Abel&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/stylesheet/style.css" />
</head>
<body>
<script src="./index.js" defer></script>
<div id="intro-text">
<h1>TODOER</h1>
<h3>A simple TODO List tracker</h3>
</div>
<div class="container">
<div class="todo-app">
<div class="todo-input-div">
<div class="toggler">
<i class="fas fa-chevron-down"></i>
</div>
<input
class="todo-input"
type="text"
placeholder="What needs to be done?"
/>
</div>
<ul class="todo-ul"></ul>
<div class="items-left">0 tasks left</div>
<div class="info-bar">
<button class="all-todos info-buttons">All</button>
<button class="active-todos info-buttons">Active</button>
<button class="completed-todos info-buttons">
Done
</button>
<button class="clear-completed-todos info-buttons">
Clear Done Tasks
</button>
</div>
</div>
</div>
<footer id="footer">Created By: Raksha Aasish</footer>
</body>
</html>