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
  • create.html
Find file
BlameHistoryPermalink
  • mhasan's avatar
    minor · 0a1ac33b
    mhasan committed 6 years ago
    0a1ac33b
create.html 1.08 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
<!DOCTYPE html>
<html lang="en-US">
    <head>
        <link rel="stylesheet" href= "create_style.css">
        
        <meta charset="UTF-8">
        <meta name="description" content="ICD0007 Project, Todo List">
        <title> Create List</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> Create List</h2>
        
        <form action = "web tech.html" method="POST"  > 
            Date : <input type="date" name= "date"> <br> <br>
            Time : <input type = "time" name ="time"> <br> <br>
            Task : <textarea rows = "6" cols= "40"></textarea> <br> <br>
            
            <input type="submit" name = "submit" value="submit"> <br>
        </form>

    </body>
</html>