Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

ahjoyo / idc0007

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • icd007
  • view.html
Find file
BlameHistoryPermalink
  • mhasan's avatar
    view · 981fa8f0
    mhasan committed 6 years ago
    981fa8f0
view.html 950 Bytes
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
<!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>