Isa's fashion blog project learn html

Hello, I’m stuck on number 13 of the project it wouldn’t create a hyperlink for me so I don’t know what to do. I followed the girl in the video too…Any help would be appreciated. Thanks.

Hello! Could you provide a link to the exercise and your current code, please? Also could you copy/paste the instructions for step 13 into a post?


To create a hyper link, use the anchor <a> tag:

<a href="the url/file name/id name"><!--any tag/text you want--></a>

Here is #13: 13.

Let’s get Isa’s blog connected to the rest of the web! In the first paragraph, turn ‘NYFW’ into a link and have it go to: https://en.wikipedia.org/wiki/New_York_Fashion_Week.

Make sure to include the target="_blank" attribute so that it opens in a new page.

Here’s my code:

NYFW can be both amaizingly fun and incredibly overwhelining, especially if you[ve never been. Luckily, I’m here to give you an insider’s guide and make your first show a pleasureable experience. By taking my tips and tricks, and following your gut, you’ll have an unforgettable expereinece!”

Ok. So, in your <a> tag, did you include the target="_blank"? It would look like this:

<a href="someurl.com" target="_blank">text, etc</a>

Visit this thread for information on how to format your code so the tags get shown:

Yes I included it in my code yet no hyperlink showed up :frowning:

1 Like

Could you repost your code, please?

1 Like

Im having the same problem I wrote the code fine but it hyperlinks everything, how can I fix it.

Hi, so I think the best way to do it would be to wrap your NSFW with an a tag within your paragraph which should look like so :

 <p> <a href="https://en.wikipedia.org/wiki/New_York_Fashion_Week" target="_blank">NYFW</a> 
can be both amazingly fun & incredibly overwhelming, especially if you’ve never been. Luckily, 
I’m here to give you an insider’s guide and make your first show a pleasurable experience. 
By taking my tips and tricks, and following your gut, you’ll have an unforgettable experience!
</p>

Hope that helps.

1 Like