This is an example of a paragraph. Just type the text between the body tags and the text will appear on the page. Remember that the HTML along with the HEAD, TITLE, and BODY tags must be closed with the slash. Html tags are not case sensitive so it does not matter if the tag is in upper of lower case. Where you press the ENTER key and how many times also does not matter. You can use these to organize your code.

You can start a new paragraph with the <P> tag. The <p> tag double spaces and starts a new line.

Remember that you cannot start a new paragraph by pressing the ENTER key. You must code a new paragraph by using the <P> tag.

You can also start a new paragraph with the the <BR> tag. This is the Line Break tag. The <br> tag starts a new line but does not does double space.

Create HEADINGS with the the <H1> tag. The headings tag creates a line about three times the size of normal text and makes it bold. This tag also puts a double space before and after the headline. You must close the the <h1> tag with the the </h1> tag.

This is a Heading

Create SUBHEADINGS with the the <H2> tag. The subheadings tag creates a line about one and a half times the size of normal tex and makes it bold. This tag also puts a double space before and after the subhead. You must close the the <h2> tag with the </h2> tag.

This is a Subheading

Create SUB SUBHEADINGS with the the <H3> tag. The subheadings tag creates a line about the size of normal tex and makes it bold. You should not use this tag to create bold text. This tag also puts a double space before and after the sub subhead. You must close the the <h3> tag with the </h3> tag.

This is a Sub Subheading

You can continue to create sub headings. Each heading will get subsequently smaller, yet be bold.

This is H4

This is H5
This is H6