Issue
Okay so I have this course I’m doing and i need to pass these last two tests on my project so i can start the next project but I’ve tried a variety of things and it still says that it does not meet the standards. I’ve done 8/10 of the test and the last 2 are in the same area, i thought i did it right but im getting the message saying it isn’t correct. Can someone help?
This is the code that has an issue apparently:
<figure id="img-div">
<img id="image" src="https://img.jamieoliver.com/home/wp-content/uploads/2016/09/salmon630x420.jpg" alt="fishie :>">
<figcaption id="img-caption">
hee hoo fune fishie picture
</figcaption>
</figure>
I thought this was what it needed since it looks like this in the example but it does not look right.
Solution
you left id="img-div"
here
<figure id="img-div">
<img id="image" src="https://img.jamieoliver.com/home/wp-content/uploads/2016/09/salmon630x420.jpg" alt="fishie :>" />
<figcaption id="img-caption">
hee hoo fune fishie picture
</figcaption>
</figure>
and remove id="img-div"
from other places
Answered By – Nikola Pavicevic
Answer Checked By – Mildred Charles (AngularFixing Admin)