create.html
1.08 KB
<!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>
<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> 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>