Help with h1 tags please?

theexpress

Regular Member
Joined
Nov 4, 2009
Messages
224
Reaction score
19
Hi Can anyone help me with what and where to put a h1 tag on my site http://bit.ly/b1gZk7 They keywords is " domain parking" Thanks
 
You can place the h1 tag as the very first thing after the body, but you know that a H1 tag will be displayed as a big headline, visible for everyone?

Here is an example of an h1-tag:

Code:
<body>
<h1 class="domain parking">domain parking</h1<
 
Last edited:
If you want to hide your h1 use this

<h1 id="hidethis">domain parking</h1>

and in your css file add

#hidethis {
visibility: hidden;
}
 
If you want keyword to be in h1 tag but not to be shown, thats the use
 
Last edited:
Back
Top