-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 1005 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TODO List</title>
<link rel="stylesheet" href="assets/css/todos.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src = "assets/js/lib/jquery-3.3.1.min.js"></script>
</head>
<body>
<div id="container">
<h1>To-Do List <i class = "fa fa-plus"></i> </h1>
<input type="text" placeholder="Add New Todo">
<ul>
<li><span> <i class = "fa fa-trash"></i> </span> Go to the potions class</li>
<li><span> <i class = "fa fa-trash"></i> </span> Buy the books</li>
</ul>
</div>
<script src="assets/js/todos.js"></script>
</body>
</html>