Headers

<h1>The Header Tag</h1>


Use the header tag to introduce web pages and paragraphs.

One advantage to using the Header tag is search engines rate them higher than regular text, when indexing your site.


They come in six default sizes.


<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>


try it out!

Paragraphs

Paragraphs are simple just this simple tag:

<p>paragraph goes here!!!</p>

Line break

this indicates a line break. 
<br>


for example.

<p>There once was a man from Nantucket<BR> Who kept all his dough in a bucket<BR> His daughter name Nan<BR> Ran away with a man<BR> And as for the bucket, Nantucket</p>

which would look like this.

There once was a man from Nantucket
Who kept all his dough in a bucket
His daughter name Nan
Ran away with a man
And as for the bucket, Nantucket


centering stuff

This is the center tag. 

<center></center>


This is used for text, images and other objects.
for example.

<center>Hello everybody!</center>

this will put it in the center of the screen. like this.

Hello everybody!