Action<img Width="390" Height="220" Src="https:... Apr 2026
: If this image is meant to be a button or link within the report, you can wrap it in an tag to make it clickable. HTML image embed element - MDN Web Docs - Mozilla
: If the original image is significantly larger than 390x220 pixels, it is better to resize the file itself rather than just using HTML attributes to downsize it, as this reduces the download time for users. Action<img width="390" height="220" src="https:...
The tag is a standard HTML element used to display images. Its primary attributes in your snippet include: : If this image is meant to be
: Explicitly setting the width and height (as you have done) helps the browser reserve space for the image before it finishes loading, preventing the page layout from jumping around. Its primary attributes in your snippet include: :
When developing a report that includes images, consider the following technical recommendations: