-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 997 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
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Todo List</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/todo.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<script src="assets/js/lib/jquery-3.2.1.js" ></script>
</head>
<body>
<div id="container">
<h1>TO-DO List <i class="fas fa-plus"></i></h1>
<input type="text" placeholder="Add new To Do">
<ul>
<li><span><i class="fas fa-trash"></i></span> new robes</li>
<li><span><i class="fas fa-trash"></i></span> visit grandma</li>
</ul>
</div>
<script src="assets/js/todo.js"></script>
</body>
</html>