-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 1.1 KB
/
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>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="src/style.css">
</head>
<body>
<div class="body-overlay opacity-80" style="background-color: #151c54"></div>
<div class="container">
<div class="header">
<h1>TO DO LIST</h1>
<p><a href="https://learnwith.hasinhayder.com/wp/shop/fullstack-modern-javascript-es6-es7/" target="_blank">ENROLL NOW</a></p></div>
<div class="input-group mb-3">
<input type="text" class="form-control taskname" placeholder="Enter Your Task" aria-label="Recipient's username"
aria-describedby="basic-addon2">
<div class="input-group-append">
<button type="button" class="btn btn-primary btnTask">Add Task</button>
</div>
</div>
<ul class="tasklist"></ul>
<button type="button" class="btn btn-link btnClear">Clear All</button>
</div>
<script src="src/index.js"></script>
</body>
</html>