Help with HTML links please.?

confused

New member
Hi i am trying to learn html myself and have the following link which doesnt work. can anyone tell me why? Its in the body of the html in a table format of columns - Also when i refresh my web page my text that was once lets say green has gone blue for the link. How can i change this back to its original colour?

Im probably doing it all wrong!! arghhhh

<tr>
<td width="124" bgcolor="#FFFFCC"><a href="http//www.Yahoo.com"/>Search</td>
</tr>
Hi Guys thanks I notice the : missing and have added the end tag

its just working out the colour for the text names to link if that makes sense????
 
The anchor tag isn't closed with </a> and the link is missing a :


to change the colour use this code after the href=""

style="text-decoration: none; font: 10px verdana; color: #000000;"


change font size and font to what you want, and colour too obviously

Good luck
 
in your body statement you are telling your page what color to make links.

Paste this in your head statement

<style type="text/css">
<!--
a:link {
color: #FFFFCC;
}
-->
</style>
 
Back
Top