You may wish to read our page on CSS concepts first. Click here.
NOTE: I will assume you have created an XHTML compliant document and taken the advice on this page and formatted it with the correct DOCTYPE and meta code.
1. Format your HTML textFirst, format your text using the Properties palette. Select your text in design view and make a selection (Paragraph, Heading 1 etc) from the Format menu. Depending on your Dreamweaver and browser preferences, it will be styled in variations of Arial or Times Roman at different weights and sizes. These are defaults and will be overruled by the CSS you are about to create.
WARNING: DO NOT USE THE FONT, SIZE OR COLOUR OPTIONS. These attributes will be defined in your style sheet.
Follow these steps ...
Create or open an existing html document and link you style sheet to it. You will need to do this for every html page you want to style.


5. Create additional styles in the style sheet you have created You can create additional styles in the CSS file you have created. Click the New CSS Style button at the bottom of the CSS Styles palette. Define the style in your existing style sheet.
It's worth re-defining the attributes of the following tags ...
body (you could define an overall font family and page background color here)
p (Paragraph)
h1 (Heading 1)
h1 (Heading 2)
h2 (Heading 3)
h4 (Heading 4)
strong (bold ... this will give you flexibility if you want to easily change the styling of all bold type. Attribute options that work are "bold" and "normal")
em (italic ... this will give you flexibility if you want to easily change the styling of all italic type)
Later, when you have defined your styles you can edit them from the CSS Styles palette by selecting the style and then clicking the Edit Style ... button at the bottom (the pencil icon).
NOTE: Don't forget to stick to standard font families like Arial, Times or Verdana. All computers have these.
None at present