#!/usr/bin/perl #This is my very first CGI script #First line contains path to Perl interpreter print "Content-type: text/html\n\n"; #Line above warns browser that HTML is on the way print ""; print "CGI-Generated HTML"; print ""; print "

Josh Tummel


"; print "

I am finally doing my labs!


"; print "

Maybe I will pass the class now :-P

"; print ""; #End of script