forked from pratyush63/ToDoAPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (22 loc) · 938 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ToDo List </title>
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link href="https://fonts.googleapis.com/css?family=Chela+One|Lora" rel="stylesheet">
<script type="text/javascript" src="assets/js/lib/jquery-3.3.1.min.js"></script>
</head>
<body>
<div id="container">
<h1>To-Do List<span id="toggle-form"><i class="fa fa-plus"></i></span></h1>
<input type="text" placeholder="Add a new To-Do">
<ul>
<li><span><i class="fa fa-trash"></i></span> Wash the Car</li>
<li><span><i class="fa fa-trash"></i></span> Go for Shopping</li>
<li><span><i class="fa fa-trash"></i></span> Complete the project!</li>
</ul>
<script type="text/javascript" src="assets/js/ToDoAPP.js"></script>
</body>
</html>