-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.59 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
<!-- /*
* Todo App
* Simple and Clean
* Using HTML5 CSS3 and JQuery
* Develope By Rashid Ali
*/ -->
<!DOCTYPE html>
<html>
<head>
<title>Todo List</title>
<!-- Import Roboto Font form Google Fonts Api -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,700' rel='stylesheet' type='text/css'>
<!-- Import FontAwesome to Use Icons -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<!-- Custom CSS Style -->
<link rel="stylesheet" type="text/css" href="css/todo.css" />
</head>
<body>
<!-- Main Container Div -->
<div id="container">
<h1>To-Do List <i class="fa fa-plus"></i></h1>
<input type="text" placeholder="Add New Todo" />
<ul>
<li><span class="delete"><i class="fa fa-trash"></i></span> Home Work <span class="done"><i class="fa fa-check"></i></span></li>
<li><span class="delete"><i class="fa fa-trash"></i></span> Watch Movie <span class="done"><i class="fa fa-check"></i></span></li>
<li><span class="delete"><i class="fa fa-trash"></i></span> Party Time <span class="done"><i class="fa fa-check"></i></span></li>
<li><span class="delete"><i class="fa fa-trash"></i></span> Friend Birthday <span class="done"><i class="fa fa-check"></i></span></li>
<li><span class="delete"><i class="fa fa-trash"></i></span> Play Games <span class="done"><i class="fa fa-check"></i></span></li>
</ul>
</div>
<!-- Import JQuery to App -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- Custom JavaScript -->
<script type="text/javascript" src="js/todo.js"></script>
</body>
</html>