in reply to Using script to print out a html file

If you just want yo see the text that is contained
in your HTML then you could try parsing your document
using HTML::Parser
$p = HTML::Parser->new(); $p->parse_file('Your_html.html');
and then use HTML::FormattedText and the format method to
get your output. Hope this is of help