h1 tag help

TheArticleMen

Regular Member
Joined
Aug 30, 2009
Messages
354
Reaction score
59
basicly ive not a clue what h1 tags are.ive read abt them on posts but dont understand where u put them or how :) can someone explain abit more about the h1 tag system for seo
 
Sure no problem

HTML:
<h1>THIS IS YOUR WEBSITE MOST IMPORTANT HEADING</h1>

Use it only once on page ;)
 
where on a page do u use this.. isit visible to visiters or isit just in background code
 
Well here's quick tour for you about heading tags http://www.w3schools.com/html/html_headings.asp
 
You could use H1 tag in your article heading. H1 tags are known as header tags and these tags are weighed very good in terms of On page SEO.
 
Exactly, what everyone has been saying, the actual tag is in the html code but how you would notice something with that tag is that being a header the text comes out larger than the normal content text, also <h2> and <h3>, etc...do the same thing only the header size gets progressively smaller.
 
<h1>re haitch one meta tags</h1>

And try to get it as high up on the page as possible. Make it one of the first things a spider will find when it crawls your pages.
 
Everything everyone has said, another way to think about it is organizing the text of your page like a "table of contents". The H1 tag being the largest and most important.

If you don't like it being so large, you can still control the size, color and font using styles. I could help you with that if you want...

<html>
<h1>Appears the Largest Heading</h1>
blah blah about my story
<h2>Large Heading</h2>
more blah about my story
<h3>Medium Heading</h3>
</html>
 
Back
Top