-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.22 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>To-do List</title>
</head>
<body background="./images/annie-spratt-pKpipZVVEC0-unsplash.jpg">
<div class="content">
<h1 class="todo">To-do List</h1>
<p class="work">Work to be added:</p>
<div class="inputbox">
<input type="text" id="dabba" placeholder="Enter the work to be done..." autofocus>
<button id="add"><i class="fa fa-plus"></i></button><br>
</div>
<div class="pending">
<span class="total"><span id="count">0</span> task pending...</span>
<button id="cbt">Clear all</button>
</div>
<div class="comlist">
<ul class="list" id="list" style="list-style-type:none;">
<!-- <li>First task <span>Delete</span></li> -->
</ul>
</div>
</div>
<script src="./js/index.js"></script>
</body>
</html>