 |
|
08-15-2007, 09:16 AM
|
#1 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Info on H1 and H2 tags
Hello all,
Hope all is well.
I did a search for H1 tag posts but the results didnt really nail down specifics.
Can anyone direct me to certain postings concerning placement of H1 tags and how to use em.
It seems I have never gotten around to puttin em on my site. Opps!
I appreciate it.
Take care,
|
|
|
08-15-2007, 09:58 AM
|
#2 (permalink)
|
|
Contributing Member
Join Date: 02-20-04
Location: Friendswood, TX
Posts: 461
|
Last edited by Bernard : 08-15-2007 at 10:12 AM.
|
|
|
08-15-2007, 10:31 AM
|
#3 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Thanks Bernard.
I take it H1 goes after the title tag.
In the old days I had it matched up to overlay my Title tag exactly.
Any Advice?
|
|
|
08-15-2007, 10:46 AM
|
#4 (permalink)
|
|
Contributing Member
Join Date: 02-20-04
Location: Friendswood, TX
Posts: 461
|
The <title> tag belongs in the <head> section of an HTML page. The <h1> tag belongs in the <body> section of a page. Keep reading the w3.org site and you will learn the proper way to structure a page and use the tags.
|
|
|
08-15-2007, 10:56 AM
|
#5 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Will do,
Thank you for the help.
|
|
|
08-15-2007, 11:40 AM
|
#6 (permalink)
|
|
Inactive
Join Date: 08-08-07
Posts: 28
Latest Blog: None
|
Yea,
<title></title> tags go in the <head></head> section. What ever is inside the <title>Title here</title> shows up at the top left of your browser bar. Title tags are weighted greatly for SEO. <h1></h1> tags are put in the <body></body> section and are usually used for a short description of a paragraph or as an attention getter. Think of <h1> tags as the Headings in a newspaper - they are used to grab your attention (and in SEO, they can grab the search engines attention).
|
|
|
08-15-2007, 03:32 PM
|
#7 (permalink)
|
|
Contributing Member
Join Date: 08-04-07
Posts: 112
|
Use H1 as title of the content, example you write about cooking and you want to title your post "Secrets of the cheff in kitchen" , wrap the secrets of the cheff in kitchen between <h1></h1> tag to use it as title of the post, and bellow that start writing your content.
You might also want to read h1 importance in seo to understand better how to use H1 tag within your site.
|
|
|
08-15-2007, 05:14 PM
|
#8 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Thanks SEO and Trapped.
I'll give it a try.
|
|
|
08-16-2007, 01:47 PM
|
#9 (permalink)
|
|
Contributing Member
Join Date: 06-13-07
Location: Japan
Posts: 74
|
Terminology:
H1 start tag = <h1>
H1 end tag = </h1>
title start tag = <title>
title end tag = </title>
H1 element = <h1>This is an H1 element, not a h1 tag</h1>
title element = <title>This is a title element, not a title tag</title>
Here is a template of a simple HTML page:
<html>
<head>
<title>Put your title here</title>
</head>
<body>
<h1>This is your main header</h1>
<p>This is the content of your Web site</p>
</body>
</html>
Good HTML tutorials: http://www.htmldog.com/
|
|
|
08-16-2007, 06:52 PM
|
#10 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Thanks PocketSEO,
Im still trying to figure out how to make the H1 text match my title text and size.
|
|
|
08-16-2007, 07:51 PM
|
#11 (permalink)
|
|
Contributing Member
Join Date: 06-11-07
Location: Mumbai, India
Posts: 823
|
Quote:
Originally Posted by Trapped
Use H1 as title of the content, example you write about cooking and you want to title your post "Secrets of the cheff in kitchen" , wrap the secrets of the cheff in kitchen between <h1></h1> tag to use it as title of the post, and bellow that start writing your content.
You might also want to read h1 importance in seo to understand better how to use H1 tag within your site.
|
That article was quite helpful. Thanks a lot.
|
|
|
08-16-2007, 09:06 PM
|
#12 (permalink)
|
|
Inactive
Join Date: 08-10-07
Location: India
Posts: 75
|
<h1> tag is very important in terms of SEO.
Put your keywords within <h1> tag and place it somewhere near the top of the page.
Hope this helps.
|
|
|
08-17-2007, 02:04 AM
|
#13 (permalink)
|
|
Inactive
Join Date: 08-17-07
Posts: 3
Latest Blog: None
|
Good use
Hello all
You must have to use these tags in a proper way. First you should use <h1> tag and then h2, h3 etc. If you are using in a proper way that is very good for SEO.
|
|
|
08-17-2007, 03:06 AM
|
#14 (permalink)
|
|
Inactive
Join Date: 10-09-06
Posts: 108
Latest Blog: None
|
Quote:
Originally Posted by douchrti
Thanks PocketSEO,
Im still trying to figure out how to make the H1 text match my title text and size.
|
CSS - Are you using css ? If yes then you will need to update h1 settings in the css template for h1 & h2 , that will apply sitewide, wherever you have used h1 or h2 tags. If not then you can create custom settings for that particular page where you need to match the size. Don't miss to check browser compatibility as IE is a bit messy in these tweaks.
|
|
|
08-17-2007, 07:20 AM
|
#15 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Thanks Sanderson,
I have not implemented CSS yet, still learning.
And yes, messy is a understatement!
|
|
|
08-17-2007, 07:26 AM
|
#16 (permalink)
|
|
Contributing Member
Join Date: 06-13-07
Location: Japan
Posts: 74
|
H1 element with CSS
Quote:
|
Im still trying to figure out how to make the H1 text match my title text and size.
|
Your "title" is not seen on the page. It only appears at the top of your browser window. The H1 element is the main header on your actual Web page.
Here is a template that shows the addition of CSS, telling the browser to render the H1 element text at 0.8em (80%) size:
<html>
<head>
<title>Put your title here</title>
<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
color: #333;
}
h1 {
font-size: 0.8em;
}
</style>
</head>
<body>
<h1>This is your main header</h1>
<p>This is the content of your Web site</p>
</body>
</html>
HTMLdog.com has great HTML and CSS tutorials.
|
|
|
08-17-2007, 07:38 AM
|
#17 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
Cool!
Thanks PocketSEO.
Thats kinda what Ive made so far, cept for the size and location which Im still trying to figure out. Location, location, location!
You guys are great by the way, thanx
|
|
|
08-21-2007, 08:53 AM
|
#19 (permalink)
|
|
Inactive
Join Date: 08-14-07
Location: California
Posts: 12
Latest Blog: None
|
OK guys,
Ive been researching my competition. I cant find any of em using H1 tags.
PCTools, Webroot, StopZilla, they have no H1 tags.
My title tag is centered on all my pages as my title tag.
How do I get the H1 tag to do the same?
Im havin a heck of a problem with this.
you guys are great for the help by the way, thanks
|
|
|
08-22-2007, 09:34 AM
|
#20 (permalink)
|
|
Contributing Member
Join Date: 06-13-07
Location: Japan
Posts: 74
|
Title elements
Quote:
Originally Posted by douchrti
Ive been researching my competition. I cant find any of em using H1 tags.
PCTools, Webroot, StopZilla, they have no H1 tags.
My title tag is centered on all my pages as my title tag.
How do I get the H1 tag to do the same?
Im havin a heck of a problem with this.
|
The title element does not get centered. The title element does not appear on Web pages at all, but only in the top of the browser window above the address bar and the browser menu bar.
The H1 element is the main header on a page. It is good to include H1 elements on your Web pages, but you can still rank without using them.
To center your H1 elements on Web pages you could do something like this with CSS:
h1 {
text-align: center;
}
BTW, it's called a "title element" not a "title tag". See this post for details:
-
Last edited by chicgeek : 08-22-2007 at 10:54 AM.
Reason: REMINDER: No self-promotion, nor linking to your own articles.
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -7. The time now is 12:29 PM.
© Copyright 2008 V7 Inc
|
|