The <DIV> construct allows you to specify abstract sections of
a document. It will not get much use (besides perhaps right
justifying, left justifying, or centering larges blocks of text) until
you start using cascading style sheets.
To use this construct in Perl CGI, use the construct:
print $query->div({-align=>'center'});
print 'A great deal ';
print 'of text entered here';
The p() tag specifies the start of a new paragraph, or indicates
that the supplied text is to be enclosed in starting and ending
paragraph tags. It is used just like the "DIV" tag above.
The br() tag forces the start of a new line. It is
used just like the "DIV" tag above.