-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 927 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/icon.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>Todo List | Create your own Todolist now!</title>
</head>
<body>
<div class="container">
<h2>Todo List <img src="./assets/icon.png" alt="Icon"></h2>
<div class="input-container">
<input type="text" id="input-box" placeholder="Add New task">
<button onclick="addTask()">Add</button>
</div>
<ul class="list-container">
<!-- <li class="checked">Task 1</li>
<li>Task 2</li>
<li>Task 3</li> -->
</ul>
</div>
<script src="app.js"></script>
</body>
</html>