The tag img may only appear as a descendant of tag noscript. Did you mean amp-img

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:
  1. Find the following string in your source code: <img and </img>
  2. 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.
  3. Save and validate your amp code again it should work!
AMP img tag validation Error Message
AMP img tag validation Error Message
Example of AMP Images Tag:
<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!

Buy Code2care a Coffee!

Comments & Discussion

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