Help with challenge [tribute page]

Hello,

I am having issues trying to complete this challenge but i have finish part of it. Below is a link and what i am missing
<a href="https://codepen.io/raspygodfather/pen/poJrxVG"click here</a

Welcome to the forums @taborajosue90. You don’t say what you’re having issues with so I have to guess. You pass 8/10 user stories. To see which are failing, click on the red button and read the error message. It will tell you what’s failed and why to help you.

Hello @Roma

My apologies, i was writing this while still doing parent duties and clearly i didn’t write the full scope of my question.

The red parts that i am missing are the follow:

. I should see an element with a corresponding id=“tribute-link”, which links to an outside site that contains additional information about the subject of the tribute page. HINT: You must give your element an attribute of target and set it to “_blank” in order for your link to open in a new tab (i.e. target="_blank").

My ANSWER:

If you have time, you should read more about this incredible human being on his <a href=#tribute-link target"_blank" “#”>Wikipedia entry.

and my other issues is the following:

The element should responsively resize, relative to the width of its parent element, without exceeding its original size.

I am guessing that i have to set it to auto as a max-width or margin?

I’m sorry my questions aren’t clear enough since i am very much new to this

@taborajosue90
You have two errors in your code

error 1> at line 26 in css you are targeting the <img> tag but you have to target the id of that tag in your case that is id=image (so just change the #img in your css to #image and it should work fine also remove the height from line 29

error 2> in line 46 of your html pay attention to the target blank you have to put an = sign after target and than everything works like a charm.

2 Likes

Thank you so much Sir

My apologies but i am still having issues with the #image tag. I remmoved the height but i am still not able to pass it. Could you please provide some insight? I understand it says that it “should responsively resize, relative to the width of its parent element, without exceeding its original size.” but i am guess i am confused to this and i am following its instructions of setting the max width or using the display

@taborajosue90 You have done everything correct just made an typo inside the #image in css its max-width you have typed ax-width.
Small mistakes keep happening No worries i fixed it for you your project passed all test congrats!