How you implement styles depends on whether you use remote styles, local styles or inline styles. I've included some samples and a link to a tutorial.
Remote styles would be a .css file that include all your style declarations and you would include it in your files with the <LINK> tag.
In your .css file:
Code:
.test {
font-weight:bold; color:#336699; font-size:18px;
}
In your Web page:
Code:
<div class="test">Some Text Here</div>
Local styles would be placing your style declarations in between <style> tags that you would place within your <head> tags.
In your "style" tags in your Web page:
Code:
.test {
font-weight:bold; color:#336699; font-size:18px;
}
In your Web page content:
Code:
<div class="test">Some Text Here</div>
Inline styles would be adding the "style" attribute inside any given HTML tag.
<h1 style="font-weight:bolder; color:#990000">Your Header Text</h1>
CSS Tutorial
Good luck,