
July 2nd, 2000, 05:55 AM
|
 |
Contributing User
|
|
Join Date: Feb 2000
Location: Perth West Australia
Posts: 757
Time spent in forums: 4 h 18 m 32 sec
Reputation Power: 14
|
|
|
as an example - before your <body> tag - in or out of the <head> put
<style>
A.link{ color : #ff0000 ;
font-family : Arial,Century Gothic ;
font-size : 10pt;
text-decoration:underline;
}
A.bluelink{ color : #ff0000 ;
font-family : Arial,Century Gothic ;
font-size : 10pt;
text-align : justify ;
}
.smallred{ color : red;
font-family : Arial,Century Gothic ;
font-size : 8pt;
text-decoration:none;
}
.bigred{ color : #red ;
font-family : Arial,Century Gothic ;
font-size : 18pt;
text-decoration:none;
}
redbold{ color : #ff0000 ;
font-family : Arial,Century Gothic ;
font-size : 10pt;
font-weight: 600;
}
</style>
now in your html you can do this:
<font class="bigred">this will be in big red text</font>
or in a table <td class="redbold">this cell will be in bold red text</td>
a normal link - <a href=" etc etc
a blue link - <a class="bluelink" href=" etc etc
Ideally your styles should be kept in a seperate file, but play around with this for a bit and see how you go.
------------------
Simon Wheeler
FirePages -DHTML/PHP/MySQL
|