Ask anyone who invented the Internet, and they will likely look at you and shake their head in confusion, even though most people couldn't live without it for a day. Of course, if you asked Al Gore, he would say he did. But the people who really invented the Internet are also important for another, related reason.
Beginning HTML - Formatting HTML Documents (Page 2 of 5 )
Just as with any other document, HTML pages should practice good layout principles. Below are a list of tags that will help you in this endeavor.
Headers
Header tags determine the size of your Header. The largest is <h1>some text</h1> and the smallest is <h6>more text</h6>. Here is a list of header sizes and an approximation of their comparative sizes:
I am an "H1" tag
I am an "H2" tag
I am an "H3" tag
I am an "H4" tag
I am an "H5" tag
I am an "H6" tag
Kind of a cool effect right?
Paragraphs
Creating paragraphs in HTML is just as simple. Just use the <p> and </p> tags. This creates a blank line before and after each paragraph. If I wrote the following tags three times: <p>Look at my paragraph!</p>, this would be my result: