-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (50 loc) · 2.04 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
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Todo list</title>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Custom stylesheet -->
<link rel="stylesheet" href="css/style.css">
<!-- Google fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400|Quicksand|Work+Sans:300,400" rel="stylesheet">
<!-- Font awesome -->
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
</head>
<body>
<!-- Container -->
<div class="container">
<!-- Header -->
<header>
<h1>Todo</h1>
</header>
<!-- Main -->
<main>
<!-- todo header -->
<section class="controls">
<label for="entertodo"></label>
<input type="text" id="entertodo" placeholder="Enter new todo">
<button id="add" onclick="handlers.addTodos()">➕</button>
</section>
<!-- todo main -->
<ul>
</ul>
<!-- todo footer -->
<section class="footer">
<button onclick="handlers.toggleAll()"><i class="fas fa-check" data-fa-transform="shrink-6"></i></button>
<button onclick="handlers.deleteSelected()"><i class="far fa-trash-alt" data-fa-transform="shrink-6"></i></button>
</section>
<h5>Double-click on the todo text to change the todo</h5>
</main>
<!-- Footer -->
<footer>
<h6>Made with <i class="far fa-heart"></i> by <a href="http://www.renishachristie.com" target="_blank">Renisha Christie A</a>. <a href="https://github.com/crisner/todo-list" target="_blank">View on <i class="fab fa-github-alt fa-lg"></i>.</a></h6>
</footer>
</div><!-- end of container -->
<!-- Scripts -->
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>