Example of Indenting the Entire Page
This is an example of indenting everything in the entire page. The right and left sides of this page are indented 100 pixels. To do this, we add this style code to the <HEAD> section of the page:
<STYLE TYPE="text/css">
<!--
BODY
{
padding-left: 100px;
padding-right: 100px;
}
-->
</STYLE>
|