#!c:/perl/bin/perl.exe
 
# hellowww.pl
# A Perl program that draws a Web page.
 
    print "Content-type: text/html", "\n\n";  # MIME header.
    print "<HTML>", "\n";
    print "<HEAD>";
    print "<TITLE>Perl meets the World Wide Web</TITLE>", "\n";
    print "</HEAD>", "\n";
    print "<BODY>", "\n";
    print "<H1>Hello, World!</H1>", "\n";
    print "</BODY>", "\n";
    print "</HTML>", "\n";
 
#                    End hellowww.pl
