From d7c993625752d0b770e9585528652ff85e81fbda Mon Sep 17 00:00:00 2001 From: N1ck1234 <44273182+N1ck1234@users.noreply.github.com> Date: Thu, 21 Mar 2019 12:43:54 -0400 Subject: [PATCH] Changes on line 13 (#28115) * Changes on line 13 Added the word "the" several times and corrected some grammar to make the description of the alt attribute easier to read. * Update index.md --- guide/english/html/tutorials/images-in-html/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/html/tutorials/images-in-html/index.md b/guide/english/html/tutorials/images-in-html/index.md index 3dfd3e1349..dcdb406b0a 100644 --- a/guide/english/html/tutorials/images-in-html/index.md +++ b/guide/english/html/tutorials/images-in-html/index.md @@ -9,7 +9,7 @@ To insert an image you define the source and an alternative text wich is display `src` - This attribute provides the url to image present either on your desktop/laptop or to be included from some other website. Remember the link provided should not be broken otherwise the image will not be produced on your webpage. -`alt` - This attribute is used to overcome the problem of broken image or incapability of your browser to not being able to produce image on webpage. This attribute as name suggests provide "alternative" to image which is some text describing the image. It is also used by screen reader applications to read the web page content, which is very helpful for visually impaired users. +`alt` - This attribute is used to overcome the problem of a broken image or the incapability of your browser not being able to produce the image on the webpage. This attribute, as the name suggests, provides an "alternative" to the image which is some text describing the image. ### Example