#!/usr/bin/perl use strict; use warnings; use CGI qw/:standard/; print header, start_html('Does CGI Work?'), h1('Does CGI Work?'), "", "Have you checked the CGI troubleshooting guide?", end_html, "\n"; __END__