-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
31 lines (27 loc) · 1.17 KB
/
Index.html
File metadata and controls
31 lines (27 loc) · 1.17 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="todos.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Todo List</title>
</head>
<body>
<div class="container">
<h1>TO-DO Lists <i class="fas fa-plus"></i></h1>
<input type="text" name="" placeholder="Add New Todo">
<ul>
<li><span><i class="fas fa-trash"></i></span> Go to class </li>
<li><span><i class="fas fa-trash"></i></span> Take shower</li>
<li><span><i class="fas fa-trash"></i></span> Take breakfast</li>
<li><span><i class="fas fa-trash"></i></span> watch movies</li>
</ul>
</div>
<footer> <!-- class="fixed-bottom" -->
© Copyright 2020 built by Piyush.
</footer>
<script type="text/javascript" src="todos.js"></script>
</body>
</html>