alt attributes entirely.Screen readers skip over images with no alt attribute, leaving users with no idea what the image shows. Even decorative images should include alt="" so the screen reader knows to ignore them intentionally.
<!-- Informative image -->
<img src="chart.png" alt="Bar chart showing Q3 revenue up 20%" />
<!-- Decorative image -->
<img src="divider.png" alt="" />