For this page I have included a 25 pixel left margin. Made the Font for the entire page Helvetica, put a mild yellow background color, and changed the color of the font to dark blue. Changed the H1 to 30 pt, Arial Italic
Standard Header Level 1 Top level mail title level for a page. Headers should be used to develop an outline for the page. When validating you HTML the H1 through H6 elements are used by the validators to produce the outlinse of you document.
Second level header.
Third level header.
Fourth level header.
Fifth level header.
Standard paragraph
Notice the first seven are block level elements, they each appear on a different line. The next three are al on the same line. They are inline elements. This will be important later. Remember the difference.
This text is bold. This text is italic This text is big This text is smallThe style sheet looks like this...
body
{
background-color: #ffffef;
margin-left: 25px;
font-family: Helvetica;
color: #000090;
}
h1
{
font-size: 30pt;
text-align: center;
}
h2
{
font-size: 24pt;
text-align: center;
}
h3
{
font-size: 20pt;
}
p.indent {
text-indent: 35px;
}
The above is slightly formatted. Now let's look at the same page with significant CSS added. CSS Page