-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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" />
<title>Todo List</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="header">
<h1>Your Todo List creator</h1>
<form id="form-add" action="">
<input type="text" class="add" placeholder="What's your new task?" />
<button class="submit" type="submit">Add New</button>
</form>
</div>
<div class="main">
<div id="tasks">
<h3>Tasks to be completed</h3>
<div class="list">
<!-- <div class="content done">
<div class="checkdiv">
<label>
<input type="checkbox" />
<span class="check"></span>
</label>
<div class="mytask">
<input type="text" value="bebo" class="text" readonly/>
</div>
<div class="actions">
<button class="edit">Edit</button>
<button class="delete">Delete</button>
</div>
</div>
</div> -->
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>