-
Notifications
You must be signed in to change notification settings - Fork 0
/
Addtask.html
56 lines (41 loc) · 1.02 KB
/
Addtask.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>
RemindMe!
</title>
<link rel="stylesheet" href="todo.css"/>
</head>
<body class="bgcolor">
<header>
<h1>RemindMe!</h1>
</header>
<nav>
<ul>
<li class="it"><a href="home.html">Home</a></li>
<li> <a href="calendar.html">calander</a></li>
<li><a href="user.php">To-Do</a></li>
<li><a href="contactus.html">Contact Us</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<div class ="task" >
<table-caption>Add Task</table-caption>
</div>
<form method="POST">
<div class="name">
<label for="tname">Task Name:</label>
<input type="text" id="tname" name="tname">
</div>
<br>
<div class="time">
<label for="time">Time:</label>
<input type="text" id="time" name="time">
</div>
<button id="addtolist">Add To List</button>
</form>
</body>
<footer>
<p>RemindMe!,copyright ©2023</p>
</footer>
</html>