-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 991 Bytes
/
index.html
File metadata and controls
37 lines (34 loc) · 991 Bytes
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="icon" href="images/search.png" type="image/png" />
<title>To do list</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="todo-app">
<h2 class="todo-app-heading">
To-Do List <img class="todo-app-image" src="images/icon.png" alt="" />
</h2>
<div class="input-div">
<input
type="text"
class="user-input"
id="input-box"
placeholder="Add your text"
/>
<button class="add-btn" id="add-btn">Add</button>
</div>
<ul class="list-container">
<!-- <li class="checked">Task 1</li>
<li>Task 2</li>
<li>Task 3</li> -->
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>