forked from OpenSouce-LNMIIT/JavaScriptProjects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodoList.html
More file actions
30 lines (30 loc) · 1004 Bytes
/
todoList.html
File metadata and controls
30 lines (30 loc) · 1004 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Todo List App</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/lib/font-awesome-4.6.2/css/font-awesome.min.css">
<script src="assets/js/lib/jquery-3.2.1.min.js"></script>
</head>
<body>
<div id="container">
<h1>To-do List <i class="fa fa-pencil"></i></h1>
<input type="text" placeholder="Add new todo">
<ul>
<li>
<span><i class="fa fa-trash"></i></span>
Meditation
</li>
<li>
<span><i class="fa fa-trash"></i></span>
Do house chores
</li>
<li>
<span><i class="fa fa-trash"></i></span>
Plan my day
</li>
</ul>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>