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 a 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 would not pass the validation and you would 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 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>
-
Have Questions? Post them here!
More Posts related to AMP,
More Posts:
- How to show End of Line Characters in File using Notepad++ - NotepadPlusPlus
- Android Disable EditText from Auto Focus on Activity load - Android
- How to write hello world different languages syntax - HowTos
- Java Check Leap Year - Programs with Code Examples - Java
- View in File Explorer option missing in SharePoint Online Edge browser - SharePoint
- AlertDialog with no buttons (just text message) - Android
- Task is ambiguous in root project gradle-examples. Candidates are: myTask1, myTask2 - Gradle
- Make Android TextView Clickable like Buttons - Android