Re: Adding CSS to a CGI script

2008-11-18 Thread vendion
On Nov 8, 12:35 pm, [EMAIL PROTECTED] (Bill Stephenson) wrote: > 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]', >              

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',

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 = p