How do I link an internet website to my personal webpage with html code?

qaokpl

New Member
I advertise on the internet and they want me to link my webpage to their webpage with an html code...Then they will list my website on their page..Thanks for all your help.I use geo cities page builder for my webpage.
 

jadiebrown

New Member
If I understand you correctly, you merely want to create a link on your website that a user can click to be taken directly to another website?

If so then this is the code you will use:

<a href="http://www.theirsitesname.com">click here</a>

Obviously the text "click here" can say whatever you would like it to say but that is the text they will click to go to the other site. The value of the href property is the url for the site you are linking to.

Let me know if this helps or if there is something else you were looking for.
 

ashgray2

New Member
If you only want link your web page to their web page. The code give by jadiebrown will help you.

You will use the HTML tag <a> using the attribute of href to call the url.
 
Top