# This is an example of how to make a cgi-script in the form of an perl script
# Make sure that !Perl is not setup to run scripts in a taskwindow
print "Content-Type: text/html\r\n\r\n";
print "<html>\n";
print "<body bgcolor=\"#ffffff\">\n";
for ($i=1; $i<7; $i++) {
  print "<h$i>Hello!!!!</h$i>\n";
}
print "</body>\n";
print "</html>\n";
