-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.62 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
28
29
30
31
32
33
34
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Coda+Caption:wght@800&family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<title>To-Do List</title>
</head>
<body>
<div id="container">
<div class="controls">
<h1 style="background-color: beige;">to do list</h1>
<input type="text" placeholder="Add your task here" name="" id="input"><br>
<button type="button" id="add">Add task</button>
<button type="button" id="remove">Remove task</button>
</div>
<ul id="list">
<li class="mycheck"><input type="checkbox" id="check"><label style="color: black;font-style:italic;">
This task has now been added to your to do list (Sample)</label></li>
<li class="mycheck"><input type="checkbox" id="check"><label style="color: black;font-style: italic;" >
Check this task to mark it complete (Sample)</label></li>
<li class="mycheck"><input type="checkbox" id="check"><label style="color: black;font-style: italic;" >
Check this task and click on remove task to delete the task (Sample)</label></li>
</ul>
<!--<h5 style="color:#333333;font-style:italic;position:relative;left:500px;top:150px;">BharatKumar</h5>-->
</div>
<script src="todo.js"></script>
</body>
</html>