#!/usr/bin/perl
  print "Content-type:text/plain\n\n";
  print "content-type:text/html; charset=utf-8\n\n
 print <<ENDHTML;
 <html>
 <head>
 <title>CGI Test</title>
 </head>
 <body>
  Hello World!
 <a href="http://someplace.com">Click Here</a>
 </body>
 </html>

