Webmaster Forum


Go Back   Webmaster Forum > Marketing Forums > SEO Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

SEO Forum Search engine optimization discussions.

Lionsanime Directory   Improve your ranking, submit to directories   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 09-03-2007, 12:24 AM   #21 (permalink)
Contributing Member
 
Steven_D's Avatar
 
Join Date: 09-02-07
Location: In my own little world
Posts: 470
iTrader: 1 / 100%
Latest Blog:
None

Steven_D is liked by somebodySteven_D is liked by somebodySteven_D is liked by somebodySteven_D is liked by somebody
it is clear that some of you people have very little knowlege of HTML programming lol, some of this advice is rediculous jus tlike my speling ROFL.


Quote:
Originally Posted by mac123 View Post
Here is example of Heading tags in order which should appear in-between the BODY tags of your web page(s):

<H1>1st Business Heading</H1>
<H2>2nd Business Heading</H2>
<H3>Sub Business Heading</H3>

Once again, the main headline will need an "h1" code to give it the greatest importance. The main sub-headings, which are numbers one, two, and so on deserve an "h2" showing they are next in line when it comes to importance. The "h3" can be given to sub-headings under the main sub-headings.
that isnt necesarily wrong, just not the best way to say it. They are not just for headers, its the info on the page, yes H1 should encapsulate the the heading of the page, which should also be the title of the page, preferably. but the H2 and H3 tags can be for things that are not headings.

<H1>1st Business Heading</H1>
<H2>relevant information</H2>
<H3>keywords</H3>

Not heading 1 heading 2 heading 3.

Just because the words are Heading 1 up to Heading 6, doesnt mean they are used only for headings. Just imagine it is I1-I6, important 1 = very, important 6 = less important but still more important than the normal content on the page.

Ultimatly each page should be about one thing.
Marketing online
Marketing ofline
Marketing your cat
Marketing your cat to other cats

dont share info on pages, keep each page about 1 specific thing

also

Quote:
Originally Posted by mac123 View Post
Be careful while using h1 and css together
Where do you get this shit from honestly.

You cant do this
<H1 style=not-so-big-words> TEXT </H1>
Or this
<H1><Font Size="2">Text</Font></H2>
or this
<h1><a href="linkthatyouthinkisimportant.htm">AnchorText</a></H1>
The way to do it is this.

Make sure you are using a style sheet, and FFS, not a list of styles in the header, but an auctual seperate file, in your images directory. Then put this into the stylesheet.css file

h1 {
margin: 0;
padding: 0;
FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: arial, verdana, helvetica, sans-serif; TEXT-DECORATION: none; font-weight: bold; text-align: justify
}
h2 {
margin: 0;
padding: 0;
FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: arial, verdana, helvetica, sans-serif; TEXT-DECORATION: none; font-weight: normal; text-align: justify
}
h3 {
margin: 0;
padding: 0;
FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: arial, verdana, helvetica, sans-serif; TEXT-DECORATION: none; font-weight: normal; text-align: justify
}

And just change what ever you want. The styles are applied by the browser to text as the pages load, a spider doesnt use Internet Explorer 7 with secruity enchancements to browse your site, so it wont know a style is being applied to the H1 text.

Also,

you can only use one H1, H2 and H3 header per page. and it has to appear between the body tags of your page.

Also,

If you have a set of H1 and H3 tags, you might as well have no H1 tags. They work in order, must go H1, H2, H3, and they have to be lower on the page than the one before it, so it cant go

H1
H3
H2

thats just dumb lol.

Last edited by Steven_D : 09-03-2007 at 12:30 AM.
Steven_D is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-03-2007, 07:01 AM   #22 (permalink)
Contributing Member
 
Join Date: 08-31-07
Posts: 57
iTrader: 0 / 0%
Latest Blog:
None

mac123 is liked by many
Quote:
Originally Posted by Steven_D View Post
it is clear that some of you people have very little knowlege of HTML programming lol, some of this advice is rediculous jus tlike my speling ROFL.




that isnt necesarily wrong, just not the best way to say it. They are not just for headers, its the info on the page, yes H1 should encapsulate the the heading of the page, which should also be the title of the page, preferably. but the H2 and H3 tags can be for things that are not headings.

<H1>1st Business Heading</H1>
<H2>relevant information</H2>
<H3>keywords</H3>

Not heading 1 heading 2 heading 3.

Just because the words are Heading 1 up to Heading 6, doesnt mean they are used only for headings. Just imagine it is I1-I6, important 1 = very, important 6 = less important but still more important than the normal content on the page.

Ultimatly each page should be about one thing.
Marketing online
Marketing ofline
Marketing your cat
Marketing your cat to other cats

dont share info on pages, keep each page about 1 specific thing

also



Where do you get this shit from honestly.

You cant do this
<H1 style=not-so-big-words> TEXT </H1>
Or this
<H1><Font Size="2">Text</Font></H2>
or this
<h1><a href="linkthatyouthinkisimportant.htm">AnchorText</a></H1>
The way to do it is this.

Make sure you are using a style sheet, and FFS, not a list of styles in the header, but an auctual seperate file, in your images directory. Then put this into the stylesheet.css file

h1 {
margin: 0;
padding: 0;
FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: arial, verdana, helvetica, sans-serif; TEXT-DECORATION: none; font-weight: bold; text-align: justify
}
h2 {
margin: 0;
padding: 0;
FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: arial, verdana, helvetica, sans-serif; TEXT-DECORATION: none; font-weight: normal; text-align: justify
}
h3 {
margin: 0;
padding: 0;
FONT-SIZE: 8pt; COLOR: black; FONT-FAMILY: arial, verdana, helvetica, sans-serif; TEXT-DECORATION: none; font-weight: normal; text-align: justify
}

And just change what ever you want. The styles are applied by the browser to text as the pages load, a spider doesnt use Internet Explorer 7 with secruity enchancements to browse your site, so it wont know a style is being applied to the H1 text.

Also,

you can only use one H1, H2 and H3 header per page. and it has to appear between the body tags of your page.

Also,

If you have a set of H1 and H3 tags, you might as well have no H1 tags. They work in order, must go H1, H2, H3, and they have to be lower on the page than the one before it, so it cant go

H1
H3
H2

thats just dumb lol.

Thanks

I meant what has been said by you to give relavance to the page you need to break up your h1 to h3 however it could be any thing your title , your topic or your keywords. the relavance goes in the form of h1 to h3.

thanks again for explaining further
mac123 is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-03-2007, 07:04 AM   #23 (permalink)
Contributing Member
 
Steven_D's Avatar
 
Join Date: 09-02-07
Location: In my own little world
Posts: 470
iTrader: 1 / 100%
Latest Blog:
None

Steven_D is liked by somebodySteven_D is liked by somebodySteven_D is liked by somebodySteven_D is liked by somebody
np lol, sorry didnt realise they were both your posts that i quoted, that was pretty mean lol. appologies!!!
Steven_D is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Marketing Forums > SEO Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
IPS Tags ajkendall Domain Name Forum 0 09-05-2007 03:21 PM
I need help with tags robertjames81 Blogging Forum 5 04-10-2007 03:28 AM
DIV Tags GeXus SEO Forum 13 08-09-2004 08:38 AM
Use of H1 tags GeXus SEO Forum 10 08-04-2004 06:51 AM
<div> tags??? Pretend Coding Forum 7 11-12-2003 02:43 PM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 05:09 PM.
© Copyright 2008 V7 Inc