Reputation: 12621
<table>
<tr>
<td class="bgimg" valign="middle" width="10%" title="some title" nowrap>
<img src="images/SomeLogo.gif"/>
</td>
</tr>
</table>
How can i format the title text ("some title") color to red?
Upvotes: 2
Views: 8771
Reputation: 1081
You should consider putting style information into a CSS file and linking to it your html head with:
<link rel="stylesheet" type="text/css" href="YourCSSFile.css" />
Then your css file could contain something like:
td{
font-size: 18px;
font-weight:normal;
color:#f7f7f7; //this is a hex value representing a light grey
}
Upvotes: 1