CGI Perl

#!/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'
)