-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 894 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Todo list</title>
<link rel="stylesheet" type="text/css" href="assests/css/todos.css" >
<script type="text/javascript" src="assests/js/lib/jquery-3.6.0.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div id="container">
<h1>Todo List <i class="fas fa-plus"></i></h1>
<input type="text" placeholder="Add a new Todo">
<ul>
<li><span><i class="fas fa-trash-alt"></i></i></span>Go to potions class</li>
<li><span><i class="fas fa-trash-alt"></i></span>Buy New Robes</li>
<li><span><i class="fas fa-trash-alt"></i></span> Hagrid</li>
</ul>
</div>
<script type="text/javascript" src="assests/js/todos.js"></script>
</body>
</html>