-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
37 lines (28 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<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="todo.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="todo2.js"></script>
<title>Document</title>
</head>
<body>
<div class="form-group">
<h1>To-Do
<small>List</small>
</h1>
<form role="form">
<span>Enter Something!!!</span><input type="text" class="form-control" placeholder="Your Task" name="task">
</form>
<button type="button" id="add" class="btn btn btn-primary">Add</button>
</div>
<div style="margin: auto;width: fit-content;"></div>
<ul class="list-group" id="todo"></ul>
</body>
</html>
<body>
</body>