Hello everyone. I have been struggling wih this my project for 2 days now. I dont know why my image has refused to display despite copying the right the scr. Please help identify the issue with this my work.
It’s just a typo, the attribute you want is called src (short for “source”), not scr .
done. The image is small. Cant get 10/10
You’ve given it a max-width of 100px:
#image {
display: block;
max-width: 100px;
padding-bottom: 10px;
}
That’s not what’s causing the tests to fail though. The error message (read more than just the first line) will give you a hint what’s wrong.
#image {
width: 100%;
}
done. Thanks mate. God bless you