-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform12.html
More file actions
45 lines (39 loc) · 2.27 KB
/
form12.html
File metadata and controls
45 lines (39 loc) · 2.27 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<form action="challenge30.php" method="post" name="form1">
<input type="checkbox" name="animal[]" value="cat" />Cat<br />
<input type="checkbox" name="animal[]" value="dog" />Dog<br />
<input type="checkbox" name="animal[]" value="horse" />Horse<br />
<input type="checkbox" name="animal[]" value="bird" />Bird<br />
<input type="checkbox" name="animal[]" value="pig" />Pig<br />
<input type="checkbox" name="animal[]" value="monkey" />Monkey<br />
<input type="checkbox" name="animal[]" value="mouse" />Mouse<br />
<input type="checkbox" name="animal[]" value="frog" />Frog<br />
<input type="checkbox" name="animal[]" value="elephant" />Elephant<br />
<input type="checkbox" name="animal[]" value="rat" />Rat<br />
<input type="checkbox" name="animal[]" value="whale" />Whale<br />
<input type="checkbox" name="animal[]" value="shark" />Shark<br />
<input type="checkbox" name="animal[]" value="fish" />Fish<br />
<input type="checkbox" name="animal[]" value="lion" />Lion<br />
<input type="checkbox" name="animal[]" value="spider" />Spider<br />
<input type="checkbox" name="animal[]" value="bat" />Bat<br />
<input type="checkbox" name="animal[]" value="bear" />Bear<br />
<input type="checkbox" name="animal[]" value="tiger" />Tiger<br />
<input type="checkbox" name="animal[]" value="wolf" />Wolf<br />
<input type="checkbox" name="animal[]" value="puma" />Puma<br />
<input type="checkbox" name="animal[]" value="bobcat" />Bobcat<br />
<input name="animalboxes" type="submit" id="submitbutton" value="submit" />
</form>
<br /><br />
<form action="challenge30.php" method="post" name="form2">
<p>type list in using commas to separate values and a semi colon to make a new line. Example: row1Item1, row1Item2, row1lastitem; row2FirstItem, row2SecondItem; row3FirstItem, row3SecondItem, row3ThirdItem, row4FourthItem; row5FirstItem</p>
<textarea name="textarea" id="textarea" cols="60" rows="10"></textarea><br />
<input name="tablemaker" type="submit" id="submitbutton" value="Make Table" />
</form>
</body>
</html>