-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject2.html
More file actions
25 lines (25 loc) · 855 Bytes
/
project2.html
File metadata and controls
25 lines (25 loc) · 855 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>TO-DO List App </title>
<link href="project2.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="todo-app">
<h2>To-Do List<img src="idea.png"></h2>
<div class="row">
<input type="text" id="input-box" placeholder="Add your text">
<button onclick="addTask()">Add</button>
</div>
<ul id="List-container">
<!--<li class="checked">Task 1</li>
<li>Task 2</li>
<li>Task 3</li>-->
</ul>
</div>
</div>
<script src="project2.js"></script>
</body>
</html>