-
Notifications
You must be signed in to change notification settings - Fork 0
/
FORM 2.html
143 lines (120 loc) · 3.54 KB
/
FORM 2.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<HTML>
<HEAD>
<TITLE>FORM 2</TITLE>
</HEAD>
<BODY>
<TABLE border="7" bordercolor="red" bgcolor="silver" cellpadding="10">
<TR >
<TD>
<FORM>
<b>First Name:</b> <input TYPE="text" NAME="firstname"/> <br/> <br>
<b>Last Name:</b> <input TYPE="text" NAME="lastname"/> <br/>
</FORM>
</TD>
<TD>
<b>Email address:</b> <input type="email" name="email_address"> <br>
<b>Why did you choose this course</b>
<br>
<SELECT name="why" size="1">
<option> One
<option> Two
<option> Three
<option> Four
<option> Other
</SELECT>
</td>
</tr>
<tr>
<td>
<b>What type of computer(s) do you have at home?</b>
<br>
<input type="checkbox" name="PC" value="PC"> PC
<input type="checkbox" name="MAC" value="MAC"> MAC
<input type="checkbox" name="Other" value="Other"> Other
<input type="checkbox" name="None" value="None"> None
<br>
<br>
<hr>
<b>What Operating system do you have at home? </b>
<br>
<input type="radio" name="rbutton" value="mv1"> Vista
<input type="radio" name="rbutton" value="mv2"> XP
<input type="radio" name="rbutton" value="mv3"> Other
<input type="radio" name="rbutton" value="mv4"> Don't Know
<br>
<hr>
<br>
<b>How do you connect to Internet at home? </b>
<br>
<input type="radio" name="rAbutton" value="IV1"> Dial-UP
<input type="radio" name="rAbutton" value="IV2"> DSL
<input type="radio" name="rAbutton" value="IV3"> Comcast High Speed <br>
<input type="radio" name="rAbutton" value="IV4"> FIOS
<input type="radio" name="rAbutton" value="IV5"> none
<input type="radio" name="rAbutton" value="IV6"> Don't Know
<br>
<Br>
<hr>
<b>Do you have a website? </b>
<br>
<input type="radio" name="button" value="yes"> Yes
<input type="radio" name="button" value="yes1"> No
<br>
<br>
<hr>
<b>Do you have a Domain name? </b>
<br>
<input type="radio" name="Dombutton" value="yes"> Yes
<input type="radio" name="Dombutton" value="yes1"> No <br>
<br>
</td>
<td>
<table border="7" bordercolor="#2471A3" cellpadding="15">
<tr>
<td colspan="6" align="center"><b> Enter your Seat#</b></td>
</tr>
<b>
<tr>
<td> <input type="radio" name="seat" value="2"> 2 </td>
<td> <input type="radio" name="seat" value="2a"> 2a </td>
<td> <input type="radio" name="seat" value="3"> 3 </td>
<td> <input type="radio" name="seat" value="8"> 8 </td>
<td> <input type="radio" name="seat" value="8a"> 8a </td>
<td> <input type="radio" name="seat" value="9"> 9 </td>
</tr>
<tr>
<td> <input type="radio" name="seat" value="4"> 4 </td>
<td> <input type="radio" name="seat" value="4a"> 4a </td>
<td> <input type="radio" name="seat" value="5"> 5 </td>
<td> <input type="radio" name="seat" value="10"> 10 </td>
<td> <input type="radio" name="seat" value="10a"> 10a </td>
<td> <input type="radio" name="seat" value="11"> 11 </td>
</tr>
<tr>
<td> <input type="radio" name="seat" value="6"> 6 </td>
<td> <input type="radio" name="seat" value="6a"> 6a </td>
<td> <input type="radio" name="seat" value="7"> 7 </td>
<td> <input type="radio" name="seat" value="12"> 12 </td>
<td> <input type="radio" name="seat" value="12a"> 12a </td>
<td> <input type="radio" name="seat" value="13"> 13 </td>
</tr>
</b>
<tr>
<td colspan="6" align="Center"> <input type="radio" name="seat" value="Other"> Other </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<b>Comments :</b> <br>
<TEXTAREA name="Comments" cols="30" rows="2"> </TEXTAREA> <br>
</td>
<td align="center">
<input type="submit" name="Submit" value ="Send It!" >
<input type="reset" name="reset" value="Clear All!" >
</td>
</tr>
</table>
</body>
</html>