Set HTML page title, author name, meta info, background color and link color
#!/usr/local/bin/perl
use CGI;
$co = new CGI;
print $co->header,
$co->start_html
(
-title=>'CGI Example',
-author=>'your Name',
-meta=>{'keywords'=>'CGI Perl'},
-BGCOLOR=>'white',
-LINK=>'red'
)
Related examples in the same category