From 767cd0e31aaa85fcdbdd0139e672f7cafe2adebb Mon Sep 17 00:00:00 2001
From: JP Rowan <44275286+jpatrowan@users.noreply.github.com>
Date: Thu, 13 Dec 2018 21:58:53 -0500
Subject: [PATCH] Added "use image as link" example and cleaned up comments.
(#24767)
* Added "use image as link" example and cleaned up comments.
* Revert first change for grammar fix
---
.../english/html/tutorials/images-in-html/index.md | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/guide/english/html/tutorials/images-in-html/index.md b/guide/english/html/tutorials/images-in-html/index.md
index c0ec62e6ad..40d76697b4 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
@@ -24,7 +23,7 @@ To insert an image you define the source and an alternative text wich is display
```
-### You can also define border thickness (0 means no border):
+### Define border thickness (0 means no border):
```html
```
@@ -34,15 +33,19 @@ To insert an image you define the source and an alternative text wich is display
```
-### You are also able to use styles within a style attribute:
+### Use styles within a style attribute:
```html
```
-Here's an example to make a rounded image:
+### Make a rounded image:
```html
```
+### Use image as link:
+```html
+
+```
### More Information