what is wrong with my code? I am trying to include a hyper link for the “NYFW”
this is from the Fashion Blog project for Html
<p> <a href="https://en.wikipedia.org/wiki/New_York_Fashion_Week."target="_blank">NYFW</a>
[/codebyte]
what is wrong with my code? I am trying to include a hyper link for the “NYFW”
this is from the Fashion Blog project for Html
<p> <a href="https://en.wikipedia.org/wiki/New_York_Fashion_Week."target="_blank">NYFW</a>
[/codebyte]
Welcome to the forums!
I tested the code snippet you shared in VSCode and it worked as expected, would you mind sharing a little more of the code in case it’s something like a missing tag elsewhere?
Also you have an extra .
at the end of the link that causes it to point to a 404
Edit: It may actually be the space (or lack thereof) between the closing quote of the href and the target
attribute, try adding one
thank you. your solution worked.