#!/usr/bin/perl
#
# eg2: produce a web page using CGI
#
use strict;
use warnings;

use CGI;

my $cgi = CGI->new;
print $cgi->header,
      $cgi->start_html("Hello World!"),
      $cgi->h1("This is a simple web page."),
      $cgi->h2("Brought to you the easy way."),
      $cgi->end_html;
