Complete the code to add alternative text to an image for accessibility.
<img src="photo.jpg" alt="[1]">
The alt attribute should describe the image content clearly for screen readers and SEO.
Complete the code to optimize image loading by specifying the image width.
<img src="logo.png" alt="Company logo" [1]="200">
Setting the width attribute helps browsers allocate space and improve page layout stability.
Fix the error in the alt attribute to improve SEO and accessibility.
<img src="chart.png" alt="[1]">
Descriptive alt text like 'Graph showing sales data' helps users understand the image content and improves SEO.
Fill both blanks to create a responsive image with alt text and lazy loading.
<img src="banner.jpg" alt="[1]" [2]>
The alt text describes the image, and loading="lazy" defers loading the image until needed, improving page speed.
Fill all three blanks to create an optimized image tag with alt text, width, and lazy loading.
<img src="profile.jpg" alt="[1]" [2]="150" [3]>
This tag includes descriptive alt text, sets the image width to 150 pixels, and uses lazy loading to improve page performance.