-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 920 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To-Do List</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="todo-app">
<h2>To-Do List<img src="to-do-icon.png"></img></h2>
<div class="row">
<input type="text" id="input-box" placeholder="Add your text">
<button onclick="addTask()">Add</button>
</div>
<ul id="list-container">
<!-- list item append-->
<!-- <li><img src="undone.png" id="mark-list"></img>Hello World<img src="cross.png" id="delet-list"></img></li> -->
</ul>
</div>
<img ondblclick="clearData()" class="btn" src="delete.png">
</div>
<script src="main.js"></script>
</body>
</html>