-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
38 lines (37 loc) · 1.36 KB
/
Index.html
File metadata and controls
38 lines (37 loc) · 1.36 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My first Webpage</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/492173461c.js" crossorigin="anonymous"></script>
</head>
<body>
<script src="index.js"></script>
<h1 class="first">Notes App</h1>
<div class="task_note">
<div class="second" id="second">Task List</div>
<ul class="taskList">
<li>Task 1
<span class="list-icon">
<i class="fas fa-edit"></i>
<i class="fas fa-trash" id="trash"></i>
</span>
</li>
<li>Task 2
<span class="list-icon">
<i class="fas fa-edit"></i>
<i class="fas fa-trash" id="trash"></i>
</span>
</li>
<form class="six">
<button type="button" class="brdbtn">Add Task</button>
<button type="button" class="brdbtn">Delete List</button>
</form>
</ul>
</div>
<i class="fas fa-plus fa-3x" id="addplus" onmouseover="hand()" onclick="addList() "></i>
</body>
</html>