-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
74 lines (67 loc) · 2.16 KB
/
todo.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width">
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/todos.css">
<title>Todo List</title>
</head>
<body>
<header class="main-header">
<div class="container grid">
<nav class="main-nav" role="navigation">
<a href="/index">
<div class="logo">TP</div>
</a>
<ul>
<li>
<a href="/index">Home</a>
</li>
<li>
<a href="/work" class="current">Work</a>
</li>
<li>
<a href="/blog">Blog</a>
</li>
<li>
<a href="/about">About</a>
</li>
<li>
<a href="/contact">Contact</a>
</li>
</ul>
</nav>
<div class="nav-toggle">
<div class="hamburger">
</div>
</div>
</div>
</header>
<div class="controls">
<a class= "back" href="work.html">
<button class=></button>
</a>
</div>
<div id="container">
<h1 class="todo">To-Do List <span id="toggle-form"><i class="fa fa-plus"></i></span></h1>
<input type="text" placeholder="Add New Todo">
<ul class="todo">
<li class="todo"><span><i class="far fa-trash-alt"></i></span> Go To Potions Class</li>
<li class="todo"><span><i class="far fa-trash-alt"></i></span> Buy New Robes</li>
<li class="todo"><span><i class="far fa-trash-alt"></i></span> Visit Hagrid</li>
</ul>
</div>
<div class="controls">
<a class= "back" href="work.html">
<button class=><</button>
</a>
</div>
<script src="js/todos.js" charset="utf-8"></script>
<script src="js/index.js"></script>
</body>
</html>