From f44afe49acff00f5a2dcee60e61558308ed7ab02 Mon Sep 17 00:00:00 2001 From: Mudi Hussaini <32632836+Profsain@users.noreply.github.com> Date: Thu, 10 Jan 2019 04:16:00 +0100 Subject: [PATCH] Add use of alt text "Line 15" (#26682) --- guide/english/html/tutorials/images-in-html/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guide/english/html/tutorials/images-in-html/index.md b/guide/english/html/tutorials/images-in-html/index.md index 40d76697b4..3dfd3e1349 100644 --- a/guide/english/html/tutorials/images-in-html/index.md +++ b/guide/english/html/tutorials/images-in-html/index.md @@ -2,7 +2,6 @@ title: Images in HTML --- - ## Introduction You can define images by using the `` tag. It does not have a closing tag since it can contain only attributes. @@ -10,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. +`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. ### Example