-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-do.html
34 lines (34 loc) · 1.15 KB
/
to-do.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
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>To Do Application - By Sharathchandar.K</title>
<link rel="stylesheet" href="to.css" />
</head>
<body>
<div class="container">
<div class="todo-header">
<h2>ToDo List</h2>
<img src="https://aurasalonware.com/wp-content/uploads/2020/11/clipboard.gif" height="50px" />
</div>
<div class="todo-body">
<input
type="text"
id="todoText"
class="todo-input"
placeholder="Add your items"
/>
<img
src="https://cdn.pixabay.com/photo/2014/04/02/10/55/plus-304947_1280.png"
alt="+"
id="AddUpdateClick"
onclick="CreateToDoItems();"
/>
</div>
<h5 id="Alert"></h5>
<ul id="list-items" class="list-items"></ul>
</div>
<script type="text/javascript" src="to.js"></script>
</body>
</html>