-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (23 loc) · 985 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Bad+Script" rel="stylesheet">
<title >to-do list</title>
<link rel="stylesheet" href="./style.css">
</head>
<h1 id="h1"> MY TO-DO LIST <i id="pencil" class="fas fa-pencil-alt"></i> </h1>
<body>
<div class="card">
<form id="add-todo" class="formAddToDo">
<input id ="item" type="text" value="" placeholder="+ Type your task">
<input type="submit" value="+" class="submit "></form>
</form>
<div id = "todo-container">
</div>
</div>
</body>
<script type="text/javascript" src="./dom.js"></script>
<script type="text/javascript" src="./logic.js"></script>
</html>