view.html
950 Bytes
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" href = "view.css">
<meta charset="UTF-8">
<meta name="description" content="ICD0007 Project, Todo List">
<title> View Tasks</title>
</head>
<body>
<nav class="nav">
<a href = "web tech.html"> Index </a>
<a href = "register.html"> Register </a>
<a href = "create.html"> Create List </a>
<a href = "view.html"> View List</a>
<a href = "faq.html"> FAQ </a>
</nav>
<h2> View Tasks for today</h2>
<table>
<tr> <th> TIME</th> <th> TASKS</th></tr>
<tr><td> 12:30</td> <td> DO something</td> </tr>
<tr> <td>16:40</td> <td> Do another thing..</td></tr>
</table>
</body>
</html>