forked from Ishaan28malik/Hacktoberfest-2024
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodo.html
24 lines (22 loc) · 797 Bytes
/
todo.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>
<head>
<title>To-Do List</title>
<link rel="stylesheet" type="text/css" href="todos.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="container">
<h1>ToDo List<i class="fa fa-plus"></i></h1>
<input type="text" placeholder="To-Do Input">
<ul>
<li><span><i class="fa fa-trash"></i> </span>Lol</li>
<li><span><i class="fa fa-trash"></i> </span>rofl</li>
<li><span><i class="fa fa-trash"></i> </span>WTF</li>
</ul>
</div>
<!-- <script type="text/javascript" src="/jquery-3.2.1.min.js"></script> -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.js"></script>
<script type="text/javascript" src="./todos.js"></script>
</body>
</html>