How do you create a link to another page using html codes?

I want to create a link on my yahoo auction page.I want to know how to create a link to my website using html codes.

Public Comments

  1. <A HREF="http://www.website.com">Link Name</A> Like that Replace whats in the quotes with the actual link or url and replace "Link Name" with what you want the people to see (the part that they click)
  2. it's easy to create a link you just have to add something like this: <a href="http://thelinktoyourpage.com">My Link</a> Just change the text "thelinktoyourpage.com" for the actual link you want to add and MyLink for the text you want the link to show. Regards
  3. 1 - If you want to to make a hyperlink with a text The HTML Code is : <a href=web page path>The linking Text</a> For example : <HTML> <P> <a href=http://www.yahoo.com>Go to Yahoo! Website</a> </P> </HTML> In the code above (Go to Yahoo! Website) will appear to the visitors and when they click on it the will go to (http://www.yahoo.com) 2 - If you want to to make a hyperlink with a picture The HTML Code is : <a href="web page path"> <img src="Picture path" width="??" height="??"> </a> and replace "??" with any number or you can ignore them <a href="web page path"> <img src="Picture path"> </a> For example : <HTML> <P> <a href="http://www.yahoo.com"> <img src="http://images.metacafe.com/i/mcLogo.gif" > </a> </P> </HTML>
Powered by Yahoo! Answers