Hi, each time i create an html link, it does not work: I have tested it chrome, firefox,internet explorer, opera.

I am talking about all the html pages i created.

The ones i created about 1 month ago worked, but not the one i am creating now:

example:

<html>
<head> </head>

<body>
<a href src="what_the.html">go </a>
</body>
</html>

---------------------------
now, when i hover on the link- it does not show me the link to what_the.html (at the bottom), instead it shows the page which i am on!

however, when i right click and view page source: i see the link to what_the.html.( that is to the good link)

Please help.
Thank you.

Recommended Answers

All 2 Replies

remove SRC tag, HREF itself is enough.

<html>
<head> </head>

<body>
<a href ="what_the.html">go </a> 
</body>
</html>

thank you.
it is working perfectly now!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.