diff --git a/guide/english/html/tutorials/images-in-html/index.md b/guide/english/html/tutorials/images-in-html/index.md index c0ec62e6ada..40d76697b45 100644 --- a/guide/english/html/tutorials/images-in-html/index.md +++ b/guide/english/html/tutorials/images-in-html/index.md @@ -12,8 +12,7 @@ To insert an image you define the source and an alternative text wich is display `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 +### Example ```html Descriptive Title @@ -24,7 +23,7 @@ To insert an image you define the source and an alternative text wich is display Descriptive Title ``` -### You can also define border thickness (0 means no border): +### Define border thickness (0 means no border): ```html Descriptive Title ``` @@ -34,15 +33,19 @@ To insert an image you define the source and an alternative text wich is display Descriptive Title ``` -### You are also able to use styles within a style attribute: +### Use styles within a style attribute: ```html Descriptive Title ``` -Here's an example to make a rounded image: +### Make a rounded image: ```html Descriptive Title ``` +### Use image as link: +```html +Descriptive Title +``` ### More Information