<b> or <STRONG> tag missbehave in CSS page
Posted: Thu Aug 11, 2005 4:39 am
Hi, i am new to CSS and have start learning by using "Copy and Past" and reading online tutorials and documents.
I am trying to put a <b> tag inside a content section of a page to put weight to some choosen words.
But when using the <B> tag it starts on a new line, <STRONG> is working.
What is the main different between the 2 tags, and what to use regarding SEO. I was told that the searchengin favor the <B> tag and i also se some SEO test pages recomend using <B> tag.
Any suggestions on how to solve thees problems.
Here is the source code for the content:
(And the temp place for the page is http://develop.in.no)
And the content in CSS:
I am trying to put a <b> tag inside a content section of a page to put weight to some choosen words.
But when using the <B> tag it starts on a new line, <STRONG> is working.
What is the main different between the 2 tags, and what to use regarding SEO. I was told that the searchengin favor the <B> tag and i also se some SEO test pages recomend using <B> tag.
Any suggestions on how to solve thees problems.
Here is the source code for the content:
(And the temp place for the page is http://develop.in.no)
Code: Select all
<div class="content">
<div><div>
<p>
</p>
<p> </p>
<h3>ADSL.in.no - Din portal for bredband. </h3>
<p> ADSL.in.no har som mål å være en uavhengig portal som gir deg hjelp med dine bredbåndsvalg ut i fra ditt behov og ønsker.</p>
<p>Trenden fremover viser at det blir større kamp om båndbredden og det gir høyere hastigheter til forbrukerne.<br>
IP telefoni begynner å ta av og vi ser en stor vekst i dette markede. <b>ADSL</b> </p>
<p />
<p />
<hr></div></div>
</div>
<!-- Content slutter her -->Code: Select all
.content {
float: left;
width:28em;
margin:0px 5px 10px 5px;
background-color:#f4f4f4;
color: #476D84;
padding:2px 10px 10px 10px;
z-index: 4;
border-left: 1px dotted #FAA004;
}