-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (89 loc) · 4 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Nyx Strong -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="container">
<h1>Registration Form</h1>
<form action="thankyou.html">
<fieldset>
<legend>Basic Info</legend>
<label for="fname">First Name:
<input type="text" name="First Name" id="fname">
</label>
<label for="lname"> Last Name:
<input type="text" name="Last Name" id="lname">
</label>
<label for="email" style="display: block;">Email:
<input type="email" name="Email" id="email">
</label>
</fieldset>
<fieldset>
<legend>Teacher</legend>
<select name="Teacher" id="Teacher">
<option value="Tiffany Ford">Tiffany Ford</option>
<option value="Kirsten Markley">Kirsten Markley</option>
<option value="Jackson Lewis">Jackson Lewis</option>
</select>
</fieldset>
<fieldset>
<legend>Time/Day</legend>
<label for="months">Month:
<select name="Month" id="months">
<option value="">Please Select One</option>
<option value="Jan">Jan</option>
<option value="Feb">Feb</option>
<option value="Mar">Mar</option>
<option value="Apr">Apr</option>
<option value="May">May</option>
<option value="June">June</option>
<option value="Jul">Jul</option>
<option value="Aug">Aug</option>
<option value="Oct">Oct</option>
<option value="Sept">Sept</option>
<option value="Nov">Nov</option>
<option value="Dec">Dec</option>
</select>
</label>
<label for="day">Day:
<input type="number" name="Day" id="day" min="1" max="31">
</label>
<label for="am">am
<input type="radio" name="Time" id="am">
</label>
<label for="pm">pm
<input type="radio" name="Time" id="pm">
</label>
</fieldset>
<fieldset>
<legend>Class</legend>
<label for="class1">CIS-101
<input type="checkbox" name="CIS-101" id="class1">
</label>
<label for="class2">CIS-120
<input type="checkbox" name="CIS-120" id="class2">
</label>
<label for="class3">CIS-130
<input type="checkbox" name="CIS-130" id="class3">
</label>
<label for="class4">CIS-131
<input type="checkbox" name="CIS-131" id="class4">
</label>
<label for="class5">CIS-135
<input type="checkbox" name="CIS-135" id="class5">
</label>
</fieldset>
<fieldset>
<legend>Extra Info</legend>
<textarea name="Extra Info" id="textarea" cols="30" rows="10" placeholder="Any extra info"></textarea>
</fieldset>
<input type="submit" value="submit" id="submit">
</form>
</div>
</body>
</html>