-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (34 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
41 lines (34 loc) · 1.24 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="Todo JS - Modern Todo App" />
<meta
name="description"
content="A modern and responsive Todo App built with HTML, CSS, and JavaScript. Features include task management, inline editing, duplicate prevention, and localStorage persistence."
/>
<meta
name="keywords"
content="todo app, javascript todo, task manager, html css js project, productivity app, todo list web app"
/>
<meta name="author" content="Apurv" />
<title>Todo List JS</title>
<link rel="icon" type="image/png" href="assets/images/Todo-JS-Logo.png" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<main class="app">
<header class="header">
<h1>Todo</h1>
<p>stay consistent 🚀</p>
</header>
<section class="input-section">
<input id="inputBox" type="text" placeholder="Add a task..." />
<button id="addButton">+</button>
</section>
<section id="todoListBox" class="todo-list"></section>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>