<!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> &nbsp; &nbsp;
                    <a href = "register.html"> Register </a>&nbsp; &nbsp;
                    <a href = "create.html">  Create List </a>&nbsp; &nbsp;
                    <a href = "view.html"> View List</a>&nbsp; &nbsp;
                    <a href = "faq.html"> FAQ </a>&nbsp; &nbsp;
                </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>