 |
Your forum announcement here! |
|
 |

30-07-2007, 10:29
|
 |
Senior Member
|
|
Join Date: Nov 2005
Location: Virtual Private Server
Posts: 2,006
|
|
h1-h6 tag
Which tag get more weightage from h1-h6? My one of friend suggested not to use more than one h1 tag coz google will give the website hosting less priority, is that true? 
__________________
OrganizeOne
Darkness does not exist, it is just absence of Light..
|

30-07-2007, 11:29
|
|
Member
|
|
Join Date: Jun 2007
Posts: 76
|
|
Hi Paul,
There are six levels of headings in HTML like H1 to H6 where H1 as the most important and H6 as the least. Visual browsers usually render more important headings in larger fonts than less important ones.
|

30-07-2007, 11:38
|
 |
Sales Manager
|
|
Join Date: Nov 2005
Posts: 807
|
|
H1 tags are the ones with highest priority so it's best to have your most important keywords which represent your page content in the H1 tag. It's usually the best to use one h1 tag per page and an h2 tag should be utilized if you want to emphasize a subtopic. However, if it is two different subjects, you should consider splitting into two different pages to use h1 tags for both.
__________________
VPS Hosting - Virtuozzo powered Virtual Private Servers.
Dedicated Server Hosting - Fully Managed UK Dedicated Servers.
MSN :: ryanw @ eUKhost.com || AIM :: RyanUKweb
|

30-07-2007, 12:50
|
 |
Premium Member
|
|
Join Date: Apr 2007
Location: Manchester, United Kingdom
Posts: 5,730
|
|
I only use one H1 tag on a page as its original intention was for the top page title. I have heard that search engines might start penalising over use of the H1 tag as lots of writing in H1 tags takes forever to scroll and makes the page very hard to read! 
|

30-07-2007, 14:01
|
 |
Premium Member
|
|
Join Date: Oct 2006
Location: North Wales
Posts: 356
|
|
Yeah I would agree that H1 is the main page heading, it makes sense that the lower priority H tags can be used more often. The document should make sense before any style information is added, if you are just using H tags for Search Engine Optimization after the page had been designed then you are using them incorrectly, this may lead to being penalised. Although Im not 100% sure how Google see it.
__________________
Act honestly, and answer boldly - Danish Proverb
Abundance is from activity - Turkish Proverb
Starting the work is two thirds of it - Welsh Proverb
|

30-07-2007, 14:03
|
 |
Premium Member
|
|
Join Date: Apr 2007
Location: Manchester, United Kingdom
Posts: 5,730
|
|
I agree. H2 should then be used for all headings below the main heading of the same priority and subheadings with the subheading should have H3 used and so on.
|

30-07-2007, 14:13
|
 |
Premium Member
|
|
Join Date: Oct 2006
Location: North Wales
Posts: 356
|
|
Yup, all hierarchical like.
__________________
Act honestly, and answer boldly - Danish Proverb
Abundance is from activity - Turkish Proverb
Starting the work is two thirds of it - Welsh Proverb
|

30-07-2007, 14:50
|
 |
Premium Member
|
|
Join Date: Apr 2007
Location: Manchester, United Kingdom
Posts: 5,730
|
|
Quote:
Originally Posted by daledavies
Yup, all hierarchical like.
|
Precisely. That was the intention of providing H1 to 6 in the first place to make it easy to create an understandable and standard hierarchical system  .
|

31-07-2007, 10:11
|
 |
Senior Member
|
|
Join Date: Nov 2005
Location: Virtual Private Server
Posts: 2,006
|
|
Well, thanks for your replies, no doubt h1 should have highest priority but I don't think it will harm if I use h2 as well as subheading as few people suggested there, I referred this w3 guideline and found they have shown both h1 & h2 decorated with style information; w3.org/TR/html401/struct/global.html#h-7.5.5
__________________
OrganizeOne
Darkness does not exist, it is just absence of Light..
|

31-07-2007, 13:00
|
 |
Premium Member
|
|
Join Date: Oct 2006
Location: North Wales
Posts: 356
|
|
Also dont forget about image replacement, you can use css to replace the text within the h1 tag with your header image or logo for example...
PHP Code:
<style type="text/css"> h1 { padding: 115px 0px 0px 0px; margin:0 0 0 0; overflow: hidden; background-image: url("../images/mastheads/masthead.jpg"); background-repeat: no-repeat; height: 0px !important; height /**/:115px; } </style>
<div id="masthead"><h1>The Main Page Title</h1></div>
__________________
Act honestly, and answer boldly - Danish Proverb
Abundance is from activity - Turkish Proverb
Starting the work is two thirds of it - Welsh Proverb
|

31-07-2007, 14:42
|
 |
Senior Member
|
|
Join Date: Nov 2005
Location: Virtual Private Server
Posts: 2,006
|
|
Thanks for help, I was missing that point. 
__________________
OrganizeOne
Darkness does not exist, it is just absence of Light..
|

31-07-2007, 14:53
|
|
Premium Member
|
|
Join Date: Mar 2007
Posts: 446
|
|
Quote:
Originally Posted by daledavies
Also dont forget about image replacement, you can use css to replace the text within the h1 tag with your header image or logo for example...
PHP Code:
<style type="text/css">
h1 {
padding: 115px 0px 0px 0px;
margin:0 0 0 0;
overflow: hidden;
background-image: url("../images/mastheads/masthead.jpg");
background-repeat: no-repeat;
height: 0px !important;
height /**/:115px;
}
</style>
<div id="masthead"><h1>The Main Page Title</h1></div>
|
You can make this mark-up leaner by removing the div. H-tags are block-level elements so don't need a div wrapper.
|

31-07-2007, 16:16
|
 |
Premium Member
|
|
Join Date: Oct 2006
Location: North Wales
Posts: 356
|
|
Quote:
Originally Posted by esnail
You can make this mark-up leaner by removing the div. H-tags are block-level elements so don't need a div wrapper.
|
Spot the deliberate mistake! 
__________________
Act honestly, and answer boldly - Danish Proverb
Abundance is from activity - Turkish Proverb
Starting the work is two thirds of it - Welsh Proverb
|

31-07-2007, 20:31
|
 |
Premium Member
|
|
Join Date: Apr 2007
Location: Manchester, United Kingdom
Posts: 5,730
|
|
Quote:
Originally Posted by daledavies
Spot the deliberate mistake! 
|
It could have been worse - at least the code was functional  .
|

31-07-2007, 20:55
|
 |
Premium Member
|
|
Join Date: Oct 2006
Location: North Wales
Posts: 356
|
|
True. By the way, change the padding and height properties to reflect the height of your image.
__________________
Act honestly, and answer boldly - Danish Proverb
Abundance is from activity - Turkish Proverb
Starting the work is two thirds of it - Welsh Proverb
|

15-08-2007, 09:32
|
 |
Senior Member
|
|
Join Date: Nov 2005
Location: Virtual Private Server
Posts: 2,006
|
|
So the bottomline is these tags has a purpose and it should be used keeping visitors in mind and not just search engine.
__________________
OrganizeOne
Darkness does not exist, it is just absence of Light..
|

15-08-2007, 13:49
|
 |
Premium Member
|
|
Join Date: Oct 2006
Location: North Wales
Posts: 356
|
|
Yeah, it seems all to easy to be more concerned with getting high rankings. Design the website hosting with accessibility in mind using H tags (and others) for the purpose of aiding accessibility. Which is I suppose what they were designed for in the first place!
I think some companies however get obsessed with top position on SERPs and forget that things like accessible content and good design can help make conversions. After all, so you got at the top of the SERPs but your website hosting is crap and inaccessible, I wont buy your product.
Not that your shouldnt take SE's into consideration when designing, I guess its finding the correct balance.
__________________
Act honestly, and answer boldly - Danish Proverb
Abundance is from activity - Turkish Proverb
Starting the work is two thirds of it - Welsh Proverb
Last edited by daledavies; 15-08-2007 at 13:53.
|

15-08-2007, 16:22
|
 |
Sales Manager
|
|
Join Date: Nov 2005
Posts: 807
|
|
The SEs do give some credit for use of Hx elements, so yes you can boost your on-page relevance by properly using a set of Hx elements.
__________________
VPS Hosting - Virtuozzo powered Virtual Private Servers.
Dedicated Server Hosting - Fully Managed UK Dedicated Servers.
MSN :: ryanw @ eUKhost.com || AIM :: RyanUKweb
|
|