Headings
<h1> </h1>
Headings are block level tags placed in the body to display
boldface text, different point sizes, with space before and
after the heading tag. There are six levels of heading from h1 to
h6. Remember, all tags must be closed.
|
|
<h1>This is Heading </h1>
|
|
<h2>This is Heading </h2>
|
|
<h3>This is Heading </h3>
|
|
<h4>This is Heading </h4>
|
|
<h5>This is Heading </h5>
|
|
<h6>This is Heading </h6>
|
Paragraphs Tag <p> </p>
Another block level tag is the
paragraph tag used to surround blocks of text which causes one
space above and after the tag. Never use the paragraph tag for additional line space. Use the style sheet rule of line-height.
<p>This text is
enclosed in the paragraph open and close tags</p>
Addtional text formatting will be covered using Style Sheets in future chapters.
|
|
|