forked from sniklaus/teaching-webdev
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path7-combined.html
More file actions
45 lines (39 loc) · 882 Bytes
/
7-combined.html
File metadata and controls
45 lines (39 loc) · 882 Bytes
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
<!DOCTYPE html>
<html>
<body>
<table border="1px soild black">
<tr>
<th>attribute</th>
<th>value</th>
</tr>
<tr>
<td>name</td>
<td><input type="textbox" name="username" placeholder="name"> </td>
</tr>
<tr>
<td> gender </td>
<td>
<input type="radio" name="rd1">male <br>
<input type="radio" name="rd2">female <br>
<input type="radio" name ="rd3" checked>other
</td>
</tr>
<tr>
<td>major</td>
<td> <select name="cars" multiple>
<option value="volvo">math</option>
<option value="saab" selected="true">computer science </option>
<option value="opel">physics </option>
</select></td>
</tr>
<tr>
<td colspan="2">anything else? <br>
<textarea rows="2" cols="20"></textarea>
</td>
</tr>
<tr>
<td colspan="2"> <input type="button" value="submit"> </td>
</tr>
</table>
</body>
</html>