In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Dave Turner) wrote:
> I have scanned the docs and can't seem to find the answer to this anywhere. > > I want to change the color of the text and the font size on a web page > using CGI:pm. > but I'd like to have the flexibility to do <FONT SIZE=+2><FONT COLOR="white"> you can make up HTML-ish functions in CGI.pm simply by including them in the import list. use CGI qw(:standard font); print font( { -size => 2, -color => 'white' }, "Enclose this"); -- brian d foy <[EMAIL PROTECTED]> - Perl services for hire CGI Meta FAQ - http://www.perl.org/CGI_MetaFAQ.html Troubleshooting CGI scripts - http://www.perl.org/troubleshooting_CGI.html -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]