Anchor tag not works in IE6 [closed]
I am using
<a href="www.google.com" > test link </a>
I didn't understand why its not working in IE6.
You need to include http://
.
<a href="http://www.google.com"> test link </a>
You should also explain what exactly you mean by 'not working', but regardless of that, that's the only mistake I see in your link.
精彩评论