![]()
What is all that tag stuff about? Does anybody really know? |
About links to places ... You can make anything a clickable link by surrounding it with the HTML link tag. For example, there's a link at the bottom of this page to the page about TEXT, that looks like Text <A HREF="filename.htm">click here</A> so that clicking on the 'click here' in this example would take you to an html page called 'filename.htm'. Or you can make an image clickable. <A HREF="filename.htm"><IMG SRC="myface.gif"></A> so that clicking on the picture of 'my face' in this example would take you to an html page called 'filename.htm'. And if you want to make a link to www.disney.com, then ... <A HREF="www.disney.com">click to visit the mouse</A> so that clicking on the words 'click to visit the mouse' in this example would take you to visit Mickey and Minnie. |