-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
46 lines (46 loc) · 1.36 KB
/
lists.html
File metadata and controls
46 lines (46 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
39
40
41
42
43
44
45
46
<!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>Document</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/lists.css">
</head>
<body>
<img src="assets/1560.png" alt="Logo" class="Logo" width="100" height="100">
<nav>
<ul>
<li><a href="./">Home</a></li>
<li><a href=".">Back</a></li>
<li><a href="about.html">About US</a></li>
</ul>
</nav>
<table>
<tr>
<th>Tasks</th>
<th>Status</th>
</tr>
<tr>
<td><input type="text" placeholder="Add Task1"></td>
<td><input type="checkbox" name="task1" value="AddTask 1">
Task 1</td>
</tr>
<tr>
<td><input type="text" placeholder="Add Task2"></td>
<td><input type="checkbox" name="task2" value="Task 2">
Task 2</td>
</tr>
<tr>
<td><input type="text" placeholder="Add Task3"></td>
<td><input type="checkbox" name="task3" value="Task 3">
Task 3</td>
</tr>
</table>
<footer>
<p>©All Rights Reserved</p>
<p>Follow Us</p>
</footer>
</body>
</html>