Greenguy's Board


Go Back   Greenguy's Board > Programming & Scripting
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2007-05-04, 01:14 PM   #1
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Is <h1> Important?

How important is it to have a site title in h1 tags? I heard several years ago to to that but when I started using CSS I got away from it. Should I go back to putting the title in h1's? <h1>Title</h1>
Licker4U is offline   Reply With Quote
Old 2007-05-04, 02:49 PM   #2
JackDaniel's
I like work, it fascinates me, I can sit and look at it for hours...
 
JackDaniel's's Avatar
 
Join Date: Dec 2006
Posts: 3,217
Send a message via ICQ to JackDaniel's
<h1> header tags are important for search engine rankings!

A <h1> header tag has to be somewhere on the top of your site and you have to place your most important keyword(s) there. Think of an <h1> header tag as a title for the content you have on your page.
__________________
Submit Your Sites : Get Porn Links
JackDaniel's is offline   Reply With Quote
Old 2007-05-04, 07:53 PM   #3
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
I've noticed that H1 tags don't have nearly the same effect as lots of other things - like back links and body text - but it's so easy to wrap <H1></H1> around a few key words the return/time ratio makes it very worth doing, IMO.

You can easily integrate header tags with css to make templates quick and easy to edit like this:

Code:
h1 {CSS_SETTINGS}
h2 {CSS_SETTINGS}
h3, h4 {CSS_SETTINGS}
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2007-05-05, 06:05 AM   #4
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Quote:
Originally Posted by virgohippy View Post
I've noticed that H1 tags don't have nearly the same effect as lots of other things - like back links and body text - but it's so easy to wrap <H1></H1> around a few key words the return/time ratio makes it very worth doing, IMO.

You can easily integrate header tags with css to make templates quick and easy to edit like this:

Code:
h1 {CSS_SETTINGS}
h2 {CSS_SETTINGS}
h3, h4 {CSS_SETTINGS}
Put that on an external style sheet?
Licker4U is offline   Reply With Quote
Old 2007-05-05, 06:54 AM   #5
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
Quote:
Originally Posted by Licker4U View Post
Put that on an external style sheet?
Tis how I do my freesites.
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2007-05-05, 07:36 AM   #6
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
Quote:
Originally Posted by virgohippy View Post
Tis how I do my freesites.
I didn't know the effect would carry over from the external style sheet. Good to know, thanks!
Licker4U is offline   Reply With Quote
Old 2007-05-05, 08:53 AM   #7
RB
The only guys who wear Hawaiian shirts are gay guys and big fat party animals
 
RB's Avatar
 
Join Date: Jun 2005
Posts: 176
i hve read some times that this tags is important ofter meta tags. So it is some time better to use if your site offer this for you.
__________________
Exchnage service PAYPAL - PAXUM icq 107706501 or e-mail robystudio gmail.com
RB is offline   Reply With Quote
Old 2007-05-05, 09:33 AM   #8
Greenguy
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
 
Greenguy's Avatar
 
Join Date: Feb 2003
Location: Blasdell, NY (shithole suburb south of Buffalo)
Posts: 41,929
Send a message via ICQ to Greenguy
Honest question

There's h1 thru h6 (that's what Namo has anyway) Regardless of the SE implication, is the true correct way to use the tags to order the importance of areas on the page?

I'm trying to think of an example & the only thing I can come up with would be a news type page, where the pages had 6 different articles & you wanted to "rank" them according to importance.

(that make sense?)
__________________

Promote POV Porn Cash By Building & Submitting Galleries to the Porn Luv Network
Greenguy is offline   Reply With Quote
Old 2007-05-05, 11:44 AM   #9
Licker4U
Mean people suck, nice people swallow, are you mean or nice?
 
Licker4U's Avatar
 
Join Date: Sep 2003
Location: Lower Alabama-The Redneck Riviera
Posts: 2,377
Send a message via ICQ to Licker4U Send a message via AIM to Licker4U
I know the h's set the font size but don't know about "important areas".
Licker4U is offline   Reply With Quote
Old 2007-05-05, 05:29 PM   #10
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
Header tags set sizes but each browser interprets that size (and margin) differently. It's very annoying.

I use header tags as a way to organize concepts (or words) in an outline format. Like this:

H1. Main Subject
H2. Sub Topic
H3. Idea
H3. Idea
H2. Sub Topic
H3. Idea
H4. Detail in Minutia
H3. Idea
Don't know if that's right though.
__________________
~Warm and Fuzzy.

Last edited by virgohippy; 2007-05-05 at 05:31 PM..
virgohippy is offline   Reply With Quote
Old 2007-05-05, 05:39 PM   #11
stuveltje
Live and learn. And take very careful notes!
 
stuveltje's Avatar
 
Join Date: Apr 2003
Location: Sunny Holland
Posts: 6,157
Send a message via ICQ to stuveltje
Quote:
Originally Posted by JackDaniel's View Post
<h1> header tags are important for search engine rankings!

A <h1> header tag has to be somewhere on the top of your site and you have to place your most important keyword(s) there. Think of an <h1> header tag as a title for the content you have on your page.
yeah Jack is right, for seo pags thats important))) btw bottom too
stuveltje is offline   Reply With Quote
Old 2007-05-06, 06:39 AM   #12
shunga
Operator! Give me the number for 911!
 
Join Date: Dec 2005
Location: Loveland
Posts: 131
Send a message via ICQ to shunga
I read on an SEO board that H1 doesn't have the importance that it used to through overuse, and that H2 and below are regarded more highly by SE's. I don't know what the experience here on that is.
__________________

Got an Asian site?
ICQ: 355-26-288
shunga is offline   Reply With Quote
Old 2007-05-06, 08:57 AM   #13
Greenguy
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
 
Greenguy's Avatar
 
Join Date: Feb 2003
Location: Blasdell, NY (shithole suburb south of Buffalo)
Posts: 41,929
Send a message via ICQ to Greenguy
Quote:
Originally Posted by virgohippy View Post
...Don't know if that's right though.
Right or not, it does make sense
__________________

Promote POV Porn Cash By Building & Submitting Galleries to the Porn Luv Network
Greenguy is offline   Reply With Quote
Old 2007-05-07, 12:36 AM   #14
LowryBigwood
Don't get discouraged; it's usually the last key that opens the lock...
 
LowryBigwood's Avatar
 
Join Date: Aug 2003
Location: Dallas, Tx
Posts: 1,203
IMHO I would say that the Header Tags are helpful for all se's, but importance would vary depending on the search engine itself. For example, I would guess that Yahoo! puts more importance on the H1 tag than Google does.

On using H1 through H6, if I use that many header tags on one page... I would pick 6 keyword phrases or variations of 3 main kw phrases to use and then put most important in h1, 2nd most important in h2, and so on. I don't think page position matters for your Header Tags, but that is another guess. Of course, this may not be the right way and your results may be different, but it is what I do.
__________________
Free Porn Buddy | Porn Buddy Blog
LowryBigwood is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:09 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc