-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 925 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
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>my toDo list</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="styles/reset.css"/>
<link rel="stylesheet" type="text/css" href="styles/style.css"/>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
</head>
<body>
<header class = "header">
<div class = "hat"><h1>toDos</h1></div>
<input type="text" class = "text1" id = "text2" placeholder="Add task here">
<button class = "addButton" id = "add_button"><i class="fa fa-plus" aria-hidden="true"></i></button>
</header>
<main class = "main">
<ul id = "toDos"></ul>
</main>
<footer class = "foot">
<ul id = "footLi" class = "hr"></ul>
</footer>
<p id = "empty_message">There are no elements for the selected filter.</p>
<footer class = "last_foot">
<p>Press Enter to add todo</p>
</footer>
<script type="text/javascript" src = "js/main.js"></script>
</body>
</html>