-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd.html
More file actions
28 lines (24 loc) · 1.25 KB
/
add.html
File metadata and controls
28 lines (24 loc) · 1.25 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
<head><title>Add Assignment</title></head>
<html>
<body>
<h1 style="text-align:center;">Add Assignment</h1>
<div style="width:25%; position:fixed; background-color:lightGray; padding:5px; padding-right:15px; display:inline-block;">
<ul><h3>Menu</h3>
<li> <a href="file:///C:/Users/Jacie/Documents/GitHub/Tech_Exercise/techEx.html#" style="text-decoration:none; color:black;">Show All Assignments</a></li>
<li> <a href="file:///C:/Users/Jacie/Documents/GitHub/Tech_Exercise/add.html#" style="text-decoration:none; color:black;">Add Assignment</a></li>
<li> <a href="file:///C:/Users/Jacie/Documents/GitHub/Tech_Exercise/search.html#" style="text-decoration:none; color:black;">Search Assignments</a></li>
</ul>
</div>
<div style="display:inline-block; margin-left:35%;">
<label for="name" style="padding-right:2.2em;" >Class Name: </label>
<input type="text" id="Name"> <br> <br>
<label for="type">Assignment Type: </label>
<input type="text" id="type"> <br> <br>
<label for="dueDate" style="padding-right:3.2em;">Due Date: </label>
<input type="text" id="dueDate"> <br> <br>
<label for="details" style="padding-right:4.15em;">Details: </label>
<input type="text" id="details"> <br> <br>
<button type="button" >Add</button>
</div>
</body>
</html>