-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gursangat Project TODO.html
42 lines (40 loc) · 1.11 KB
/
Gursangat Project TODO.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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Gursangat Ptroject</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container" >
<div class="controls">
<h1> TODO</h1>
<input
type="text" id="input" name="form"placeholder="Add Todo here">
<!-- <div>
<input type="reset" value="Reset the form">
</div> -->
<br>
<br>
<button type="button" id="add">ADD TODO</button>
<button
type="button" id="remove">REMOVE TODO</button>
<br>
<!-- <input type="reset" value=" Reset the Todo"> -->
</div>
<ul id="list">
<li class="mycheck">
<input type="checkbox"id="check"><label>Go To Gym </label>
</li>
<li class="mycheck">
<input type="checkbox"id="check" ><label>Do Coding </label>
</li>
<li class="mycheck">
<input type="checkbox"id="check"><label>Make A Website </label>
</li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>