-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
52 lines (45 loc) · 1.16 KB
/
new.html
File metadata and controls
52 lines (45 loc) · 1.16 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>New Student Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Add A New Student</h1>
<nav>
<ul>
<li><a href="am.html">AM Class</a></li>
<li><a href="pm.html">PM Class</a></li>
<li><a href="staff.html">Staff</a></li>
<li><a href="new.html">New Person Form</a></li>
</ul>
</nav>
<form>
<div>
<label for="first">First Name</label>
<input id="first" type="text" placeholder="Enter first name">
</div>
<div>
<label for="city">City</label>
<select id="city">
<option>Chicago</option>
<option>Detroit</option>
<option>New York</option>
</select>
</div>
<div>
<label for="bio">Bio</label>
<textarea id="bio" placeholder="Add a bio"></textarea>
</div>
<div>
<label for="am">AM</label>
<input id="am" type="radio" name="section">
<label for="pm">PM</label>
<input id="pm" type="radio" name="section">
</div>
<div>
<input type="submit">
</div>
</form>
</body>
</html>