This chapter is from the book
Page Design
For consistency in the look and feel of the application, every JSP page uses the same design. There is a header on top of each page and a menu on the left. Every page has the following structure:
<HTML> <BODY> <TABLE> <TR> <! header > </TR> <TR> <TD VALIGN="TOP"> <! menu > </TD> <TD VALIGN="TOP"> <! page content> </TD> </TR> </TABLE> </BODY> </HTML>