-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (27 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>ToDO List</title>
<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=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="todos.css">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="assets/css/todos.css">
</head>
<body>
<div id="container">
<h1>TO-DO List<i class="fa fa-pencil"></i></h1>
<input type="text" name="enter" placeholder="Add a new To-Do">
<ul>
<li><span><i class="fa fa-trash"></i></span> Put Alarm</li>
<li><span><i class="fa fa-trash"></i></span> Wake Up on time</li>
<li><span><i class="fa fa-trash"></i></span> Refresh Yourself</li>
<li><span><i class="fa fa-trash"></i></span> Brush up</li>
</ul>
</div>
<script type="text/javascript" src="todos.js"></script>
</body>
</html>