diff --git a/client/src/pages/guide/english/html/tutorials/images-in-html/index.md b/client/src/pages/guide/english/html/tutorials/images-in-html/index.md index 3822fd4ec6..c8e58fb804 100644 --- a/client/src/pages/guide/english/html/tutorials/images-in-html/index.md +++ b/client/src/pages/guide/english/html/tutorials/images-in-html/index.md @@ -8,9 +8,9 @@ title: Images in HTML You can define images by using the `` tag. It does not have a closing tag since it can contain only attributes. To insert an image you define the source and an alternative text wich is displayed when the image can not be rendered. -`src` - This attribute provides the url to image present either on your P.C./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. +`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 ## Example @@ -40,5 +40,5 @@ To insert an image you define the source and an alternative text wich is display #### More Information -- See the freeCodeCamp page on the `` tag [here](https://guide.freecodecamp.org/html/elements/img-tag). +- See the freeCodeCamp page on the `` tag [here](https://guide.freecodecamp.org/html/elements/img-tag) - To get more details on images in HTML, check out the [MDN Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Img)