Bold font not showing up

I am trying to get a bold font to show up and it is showing up without emphasis. It shows in dreamweaver but not when it is posted up this is the code that I am using:
<p align=“left”><b><br />Become an Inn Keeper:</b><br />
It can be found here: http://www.influencealife.org/influence.html

Also, you are using old markup. The align=“left” can be removed altogether and just use float:left in the CSS.

The bold can be given via font-weight:bold in the CSS, and the break lines are not to be used there :slight_smile:

In your stylesheet find this:

div#body_text p{
	clear:left;
	font-family: Verdana, Geneva;
	font-weight: lighter;
	font-size: 16px;
	color: #123250;
	line-height: 22px;
	margin-bottom: 30px;
	margin-left: 20px;
	margin-right: 20px;
}

and remove font-weight: lighter;

thanks
it is always something easy that you miss.