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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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--