-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>To-Do</title>
</head>
<body>
<header>
<h1>TO-DO APP</h1>
</header>
<section class="form-section">
<form>
<input type="text" name="todo" id="todo" required placeholder="Add Task">
<button id="addButton">Add</button>
</form>
</section>
<section class="show-todo-btn-section">
<button class="show-todo-btn active" id="allBtn">All To-Do</button>
<button class="show-todo-btn " id="completedBtn">Completed</button>
<button class="show-todo-btn" id="pendingBtn">Pending</button>
</section>
<section class="to-do-list" id="to-do-list">
<!-- <p>first todo app take yourjflkjjf</p>
<p>first first todo app take yourjflkjjf</p>
<p>first first todo app take yourjflkjjf</p>
<p>first first todo app take yourjflkjjf</p>
<p>first first todo app take yourjflkjjf</p>
<p>first first todo app take yourjflkjjf</p> -->
</section>
<script src="javascript.js"></script>
</body>
</html>