-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO.html
43 lines (32 loc) · 1.44 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>TO'DOS LIST</title>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<link rel="stylesheet" type="text/css" href="ASSETS/CSS/todo.css">
<!-- link for the google fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap" rel="stylesheet">
<!-- link for the font awesome -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<!-- including jquery file from the dekstop -->
<script type="text/javascript" src="ASSETS/JS/LIB/jquery-3.4.1.min.js"></script>
</head>
<body>
<!-- container id with the help of jquery -->
<div id="container">
<!-- class of the font awesome included -->
<h1>To-Do List <i class="fas fa-plus"></i></h1>
<input type="text" placeholder="Add New Todo">
<ul>
<!-- the red trash icon when hovered -->
<!-- initial three todos -->
<li><span><i class="fas fa-trash-alt"></i></span><strong>CREATE A WEB APP</strong> </li>
<li><span><i class="fas fa-trash-alt"></i></span><strong>GET PHONE REPAIR</strong></li>
<li><span><i class="fas fa-trash-alt"></i></span><strong>WASH CLOTHES</strong></li>
</ul>
</div>
<script type="text/javascript" src="ASSETS/JS/todos.js"></script>
</body>
</html>