#!/usr/bin/perl 
#env1.pl prints out some information pertaining to the cgi environment variables.

#use strict;

print "Content-type: text/html\n";

print "<html><head>";
print "<title> A Perl Web Page!</title>";
print "</head><body>";

print "<h1> Welcome! </h1>";

print $ENV{ HTTP_USER_AGENT };

print "</body></html>";

print "\n";

