Read the instructions carefully. They say “add a new image below the existing one” and it gives you a URL to use for the src attribute. You have a different value.
Read the error message you get with your code;
You should have a total of two images.
Your new image should have a src of https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg.
Your code has four images.
You also changed the url of the original existing image which is why it no longer appears.
img src="https://bit.ly/fcc-running-cats "class=“img-responsive” Your quotes were misplaced. Also i believe the “m” in monospace is supposed to be lower case
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
As you were told earlier, you are not using the correct URL.
The lesson says
First, add a new image below the existing one. Set its src attribute to https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg .
On a side note, this far into the curriculum you should be able to use the failing messages to help you see what is making your code fail. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer.
Take the period after running-cats.jpg and the space off in your src=. Also take the period from your original alt message out. These two things can cause errors. Roma was not getting smart with you, he/she was only telling you right. The ability to debug your code and spot your errors is a big part of the job and constructive criticism never hurt anyone. Stay calm, read your code over and the reason you’re having a hard time with this lesson is because your copying the text from the lesson instead of typing it. Which is also another thing you need to work on, don’t copy text, get your typing speed up because you’re going to need it if you want to do this for a living.
I can handle criticism however I will not tolerate disrespect as a human being also I have tried everything you said same outcome but thanks for your advice
I am not talking reckless to you nor am I disrespecting you
screenshots really do not help much. it’s better if you post all of your code
I can’t tell too much from the screenshot but what I can see is the error message saying "your new image should have a src of https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg
and what you have entered is https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg .
Please try entering the the URL provided
EDIT: although it won’t make the tests fail you are tasked with adding a new image after the existing one. The existing one ends with </a>.
You set the new image prior to the </a>.