fix(curriculum): change alt text in example to match the image (#45777)

This commit is contained in:
Ilenia
2022-04-25 18:17:02 +02:00
committed by GitHub
parent 6f0d2fa502
commit 130f30ca2e

View File

@@ -27,7 +27,7 @@ Ideally the `alt` attribute should not contain special characters unless needed.
Let's add an `alt` attribute to our `img` example above:
```html
<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="A business cat wearing a necktie.">
<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="freeCodeCamp logo">
```
# --instructions--