print li('hi','how','are','you')
print li(['hi','how','are','you'])
print li({-type=>'disc'},['hi','how','are','you'])
#!/usr/bin/perl
# Script: vegetables2.pl
use CGI ':standard';
print header,
start_html('Vegetables'),
h1('Eat Your Vegetables'),
ol(
li(['peas',
'broccoli',
'cabbage',
'peppers' .
ul(['red','yellow','green']),
'kolrabi',
'radishes']) # <=== typo in your handout!!
),
hr,
end_html;
|
|
| Contents | Next |