Hi bangers!
Here's an example how to use classes and id's.
Let's say, you have such a style definition:
p { font-size: 12pt; font-family: times, serif; text-indent: 50px; text-align: justify; color: white }
in order to change a color of text you may create a style class named "one":
.one { color: #ccff00 }
and to change font and to add bold weight to it you may create selector:
#two { font-family: arial, sans-serif; font-weight: bold }
Then, if you want to modify your <P> text, you write this:
<p class=one>the text</p>
or
<p id=two>the text</p>
or
<p class=one id=two>the text</p>
Hope it is what you wanted to know. If not, specify exactly what you need.
Andrew | starway@mail.com