This rule checks that the specified attributes are present in HTML tags.
For a required attribute list of img.alt,img.height,img.width:
<img src="/images/queen.png"> <!-- Noncompliant; missing all required attributes -->
<img src="/images/queen.png" width="60" height="85" alt="Elizabeth II">