|
You call the different CSS types using the class and id attributes.
So, either in your page, or a seperate CSS file, you have something like :
#id1 { border-width: 1px; border-color: #000000; border-collapse: collapse; }
.tdBorder { border-width: 1px; border-color: #006699; border-style: dashed; }
.text { font-family: Verdana, Arial, Helvetica, sans-serif; font-color: #000000; font-size: 9px;
Your HTML would look similar to :
<html>
<head>
<title>##----[ YOUR PAGE TITLE ]----##</title>
<!--
either
<style type="text/css">
styles here
</style>
or
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<table id="id1">
<tr>
<td class="tdBorder">Something Goes Here</td>
</tr>
<tr>
<td>The text contained within the span tags <span class="text">is formatted like this</span></td>
</tr>
</table>
</body>
</html>
Last edited by Enigmatic; 07-20-2005 at 03:21 AM..
Reason: forgot to close a tag
|