forked from facg3/To-do-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
35 lines (34 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="To do list">
<meta name="keywords" content="HTML,CSS">
<meta name="author" content="Yasmin Hillis">
<title>tdd todo</title>
<link rel="stylesheet" href="./style.css">
</head>
<body><center>
<div class="form" >
<img src="taskdeck_icon.png" alt="todo icon"/><br><br><br>
<form id="add-todo">
<label for="new-task-input">Write task : </label>
<input id="new-task-input" type="text" name="description" value="" class="new-task-input" placeholder="What do you want to do">
<input type="submit" value="Add task" class="add-task-button">
</form><br><br>
<h3 class="uncomplete">Todo</h3>
<div id = "todo-container" class="todo-container">
<ul id="incomplete-tasks">
</ul>
</div>
<h3 class="complete">done</h3>
<div id = "do-container" class="do-container">
<ul id="complete-tasks">
</ul>
</div>
</div></center>
</body>
<script type="text/javascript" src = "./logic.js"></script>
<script type="text/javascript" src = "./dom.js"></script>
</html>