-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.html
More file actions
31 lines (29 loc) · 1.04 KB
/
Copy pathweb.html
File metadata and controls
31 lines (29 loc) · 1.04 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
31
<!DOCTYPE html>
<html>
<head>
<title>To-Do List</title>
<!-- css link -->
<link rel="stylesheet" type="text/css" href="des.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
</head>
<body>
<div class="header">
<span>TO-DO LIST</span>
<i id="plus" class="fas fa-plus"></i>
</div>
<div class="todoContent">
<input type="text" placeholder="Write To-Do">
<ul>
<li><i id="trash" class="fas fa-trash-alt"></i>Matan</li>
<li><i id="trash" class="fas fa-trash-alt"></i>Eden</li>
<li><i id="trash" class="fas fa-trash-alt"></i>Shahar</li>
</ul>
</div>
<!-- from here jQuery link & js link -->
<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="jq.js"></script>
</body>
</html>