When I use href in html, why doesn't it work?
I used href in html, but it doesn't work.
Voters
xxpertHacker
Works for me, just make sure that it's opened into it's own tab.
RYANTADIPARTHI
hmm, that's weird, it should work. Try removing the title
in that a
link instead. see if it works.
19wintersp
Your <p>
and <a>
are inside of your <script>
tag, because you didn't close it. Content of <script>
tags is interpreted as JavaScript, rather than HTML. To fix this, add a </script>
tag after your JavaScript code, after line 11.
works for me. Make sure all your tags are closed and your HTML is valid.
I mean that I can't click on click here.
@Coder100or you could also add this to your a tag:
@WilliamXing