-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.29 KB
/
index.html
File metadata and controls
30 lines (29 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>TO-DO</title>
<link rel="stylesheet" type="text/css" href="assets/CSS/TODO.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script type="text/javascript" src="./assets/lib/jquery-3.4.1.min.js"></script>
<meta name="viewport" content="width=device-width">
</head>
<body>
<div id="container">
<h1>TO-DO<i class="fa fa-pencil"></i></h1>
<input type="text" name="" placeholder="Add new TO-DO" maxlength = "40">
<ul id="todolist">
<!-- <li> <span><i class="fa fa-trash"></i></span> Harry<img src=""> </li> -->
<!-- <li> <span><i class="fa fa-trash"></i></span> Potter<img src=""></li> -->
<!-- <li> <span><i class="fa fa-trash"></i></span> And<img src=""></li> -->
<!-- <li> <span><i class="fa fa-trash"></i></span> Secerets<img src=""></li> -->
<!-- <li> <span><i class="fa fa-trash"></i></span> Azkaban<img src=""></li> -->
</ul>
</div>
<script type="text/javascript" src="./assets/JS/TODO.js"></script>
</body>
</html>