Validation Error:
The tag 'img' may only appear as a descendant of tag 'noscript'. Did you mean 'amp-img'?
The above error is clearly due to your AMP web page code having an image tag which is starting with <img and not <amp-img. It is mandatory to change all img tags to amp-img or else your HTML code will not pass the validation and you will see this error!
Solution:- Find the following string in your source code: <img and </img>
- If you get any results, replace them with <amp-img and </amp-img>,also make sure to add default width and height attribute as its needed as well.
- Save and validate your amp code again it should work!
<amp-img
alt="This is an AMP Image!"
title="Some title goes here!"
src="/images/chicago.jpg"
width="400"
height="300"
layout="responsive">
</amp-img>
This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!