|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
<h> or <strong>
Hello all,
Quick simple question. Let's face it, <h1>text</h2> makes the text on your page real hugly. I read everywhere that this tag is important to use to make your keywords stand out to a spider. What about those newer tags like <strong>text</strong>, does it have the same effect? Thanks, Francois |
|
#2
|
|||
|
|||
|
Quote:
No it doesnt. <h1 class="title>My Nice Title</h1> In your CSS Code:
h1.title {
font: bold 1.3em arial, verdana, sans-serif;
margin-bottom: 0;
border: 1px dashed #CCC;
background-color: #F5F5F5;
}
Feel free to make yours prettier, i aint no artist! Nick |
|
#3
|
|||
|
|||
|
both strong and bold tags can do the job for highlighting important phrases on your pages.
__________________
ERP Software | Gift Ideas | Add to 100 SEO Friendly Directories Fast Market Research | build Natural Permanent One-Way Links that actually work |
|
#4
|
||||
|
||||
|
Quote:
To fix all your h1-tags you don't need to use <h1 class="title">My Nice Title</h1>. Just put your nice title into a regular h1-tag. <h1>My Nice Title</h1> In your CSS: Code:
h1
{
font-size: 1.6em;
margin: 0;
padding: 0;
font-weight:bold;
}
That's it. If you wan't to change the h1-tag inside one specific table or div (I'm using div in this example), give the div an id or a class (difference is that you can't have duplicate id's on one page). Ex.: <div class="yourdivname"><h1>Heading inside div</h1></div> In your CSS: Code:
.yourdivname h1
{
font-size: 1em;
margin: 0;
padding: 0;
font-weight:bold;
}
__________________
Strictly CSS - free directory for CSS designed sites. |
|
#5
|
|||
|
|||
|
Thank you for your answers!
|
![]() |
| Viewing: SEO Chat Forums > Search Engine Strategies > Search Engine Optimization > <h> or <strong> |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|