-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathto_do.html
22 lines (22 loc) · 896 Bytes
/
to_do.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/todo.css">
<title>TO_DO</title>
</head>
<body>
<div>
<h1>to do list <i class="far fa-edit"></i></h1>
<input type="text" placeholder="enter the new todo">
<ul id="list">
</ul>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/jQuery/main.js"></script>
</body>
</html>