#!/usr/local/bin/perl -w
# reply.pl Ð a CGI program that returns a greeting to the user
print "Content-type: text/html \n\n",
       "<html> <head> \n",
       "<title> reply.pl example </title> </head> \n",
       "<body> \n",
       "<h1> Greetings from your Web server! </h1> \n",
       "</body> </html> \n";

