From 130f30ca2ea6c1bddfc4e24e877ca2a8e48bfe11 Mon Sep 17 00:00:00 2001 From: Ilenia Date: Mon, 25 Apr 2022 18:17:02 +0200 Subject: [PATCH] fix(curriculum): change alt text in example to match the image (#45777) --- .../basic-html-and-html5/add-images-to-your-website.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.md index 172fc6b6c60..c478daf41e7 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.md @@ -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 -A business cat wearing a necktie. +freeCodeCamp logo ``` # --instructions--