user1016403
user1016403

Reputation: 12621

How can I change the title color in an html page?

<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

Answers (1)

Conor Pender
Conor Pender

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

Related Questions