in reply to Html Template CSS and CGI PERL

You did not state whether or not you are using the CGI module. If so, declaring an external CSS sheet is documented:

print $query->start_html( -style => {'src'=>'http://www.mystyle.com/styles/style.css'} );

---
The harder I work, the luckier I get.

Replies are listed 'Best First'.
Re^2: Html Template CSS and CGI PERL
by revdiablo (Prior) on Dec 28, 2004 at 18:05 UTC

    I do not think using CGI's HTML generation methods counts as a template. I suppose you could move all the HTML generating code into a module, and call it your template, but I'm still rather dubious of that. I think he meant something more along the lines of HTML::Template or Template-Toolkit.