-2

If the code in HTML5 is: (*** stands for whatever information we need to fill, it is just for example not a keyword)

<img src = "***.jpg" width = "***" height = "**" alt = "*****">

Then here what function does the alt attribute actually do?

TylerH
  • 20,799
  • 66
  • 75
  • 101

1 Answers1

1

From W3Schools

The required alt attribute specifies an alternate text for an image, if the image cannot be displayed.

The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).

Robert Bradley
  • 548
  • 2
  • 21
1jovi3
  • 74
  • 8