well first of all differ with JavaScript and HTML. They both are different so don't use HTML script it confuses me, use HTML code instead, looks better, huh.
i think what you mean to say that you want a text which could be clicked to go to any web page or you mean your page. Some thing like this
Google
Ok let me first introduce with
<a> tag or anchor tag. It generally used to make hyperlinks (such as shown Google example).
the syntax for that is
<a href="filename.ext">Your link title</a>
a is as i told u before is anchor tag. In
href attribute you write the url to the file(with extension of course) you wanna link.
for example you have file new.zip in the directory. Then you can make a link by
<a href="new.zip">New Zip File</a>
if same file is under
folder1 subdirectory then u use
<a href="folder1/new.zip">New Zip File</a>
else if the same file is one level above i mean to say one directory up then
<a href="../new.zip">New Zip File</a>
similarly for 2 directory up then
<a href="../../new.zip">New Zip File</a>
Now if you want to link a webpage simply write the webpage address:
<a href="new.html">Webpage</a>
hope you understand what i have explained. if u want to learn more about html language just go to
www.pagetutor.com
www.w3schools.com
They have some best web tutorials.
and if still don't understand something daniweb is always open.
vishesh