-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>To Do List</title>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script defer src="script.js"></script>
</head>
<body>
<div class="edit-name-box">
<div class="title">Edit List/Task</div>
<input type="text" name="edit-name" placeholder="New name">
<div class="edit-submit-btn">Done</div>
</div>
<div class="all-todo-lists">
<div class="list-of-lists">
<div class="title">Your To-Do Lists</div>
<div class="lists-container">
</div>
<form class="add_new_list">
<input type="text" placeholder="New List" class="new_list_name" />
<div class="submit_new_list"><i class="fa fa-plus-square"></i></div>
</form>
</div>
<div class="container" id="todo-1">
<div class="title">List of Tasks Go here..</div>
<div class="tasks_container">
</div>
<form class="add_task">
<input type="text" placeholder="New task" class="new_task_name" />
<div class="submit_new_task"><i class="fa fa-plus-square"></i></div>
</form>
</div>
</div>
</body>
</html>