A Simple Perl Script

#!/usr/local/bin/perl

print "Content-type:text/html\n\n";
print "<html><head><title>Here's my HTML!</title></head><body>";
print "Here is a simple perl script to demonstrate printing a simple HTML page.";
print "<h2>You can use <i>any</i> HTML tag you wish!</h2>";
print "</body></html>";
 
 
 


 Perl Data
 Home