-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
23 lines (22 loc) · 900 Bytes
/
index.htm
File metadata and controls
23 lines (22 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>To Do List</title>
<link rel="stylesheet" href="toDoList.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.5.0.js" integrity="sha256-r/AaFHrszJtwpe+tHyNi/XCfMxYpbsRg2Uqn0x3s2zc=" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/1ea6964520.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="container">
<h1>To Do List<i class="fas fa-plus"></i></h1>
<input type="text" 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> go to gym</li>
<li><span><i class="fas fa-trash"></i></span> go to sleep</li>
</ul>
</div>
<script src="toDoList.js"></script>
</body>
</html>