fix(learn): no capital code block (#40688)

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>
This commit is contained in:
Nicholas Carrigan (he/him)
2021-01-16 11:54:38 -08:00
committed by GitHub
parent 3ecdfe87d7
commit bab54ad619

View File

@ -9,7 +9,7 @@ dashedName: add-a-text-alternative-to-images-for-visually-impaired-accessibility
# --description--
It's likely that you've seen an `alt` attribute on an `img` tag in other challenges. `Alt` text describes the content of the image and provides a text-alternative for it. This helps in cases where the image fails to load or can't be seen by a user. It's also used by search engines to understand what an image contains to include it in search results. Here's an example:
It's likely that you've seen an `alt` attribute on an `img` tag in other challenges. `alt` text describes the content of the image and provides a text-alternative for it. This helps in cases where the image fails to load or can't be seen by a user. It's also used by search engines to understand what an image contains to include it in search results. Here's an example:
`<img src="importantLogo.jpeg" alt="Company logo">`