Adding CSS to a CGI script

2008-11-08 Thread Adam Jimerson
I am curious about adding CSS to a CGI script, lets say that this is my script ~~~ #!/usr/bin/perl use warnings; use strict; use CGI qw(:standard); print header(), start_html(Add Me); print h1(Add Me); if(param()) { my $n1 = param('field1'); my $n2 = param('field2'); my $n3 = $n2 + $n1;

Re: Adding CSS to a CGI script

2008-11-08 Thread Bill Stephenson
On Nov 8, 2008, at 10:39 AM, Adam Jimerson wrote: start_html This is from the CGI docs: print start_html(-title='Secrets of the Pyramids', -author='[EMAIL PROTECTED]', -base='true', -target='_blank',