Hi there Guys.
Ok I've only been learning css for two days now, and I'm still a bit daunted about the whole thing.
I Know to attach a css sheet I nee to use this :
<LINK rel="stylesheet" type="text/css" name="anyname" href="url">
Please bare with me here a little whilst i try to explain a little further.
I also understand stand the basic structure of the css sheet which I presume is this :
body
{
font-family: Verdana, "Minion Web", Helvetica, sans-serif;
font-size: 1em;
text-align:justify;
}
The whole Above is the STATEMENT which can be many in number in a css sheet ,the Body =SELECTOR and the content inside the curly braces is the DECLARATION.
Now here is where I get stuck.
How do I assign the styles to lets say a paragraph of any other text element on my webpage? Do i need to insert a tag of some sort at the start of the element to be changed?
Plaese help me.
Any refered books or even urls on this subject would be appreciated
many thanks!!