From 934c585a36e0810b00244ee9031dbdc997d779da Mon Sep 17 00:00:00 2001
From: EmeraldEntities <44278515+EmeraldEntities@users.noreply.github.com>
Date: Sun, 4 Nov 2018 23:03:02 -0500
Subject: [PATCH] Updated the text and examples (#20968)
Rewrote the text to be more descriptive and concise
Added an example for links in images
---
.../html/tutorials/how-to-use-links/index.md | 35 ++++++++++---------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/guide/english/html/tutorials/how-to-use-links/index.md b/guide/english/html/tutorials/how-to-use-links/index.md
index 93fcdc1f370..812cc1d63a1 100644
--- a/guide/english/html/tutorials/how-to-use-links/index.md
+++ b/guide/english/html/tutorials/how-to-use-links/index.md
@@ -3,33 +3,34 @@ title: How to Use Links
---
## How to Use Links
-In HTML you can use the `` tag to create a link. For example you can write `freeCodeCamp` to create a link to freeCodeCamp's website.
+Links are found in many webpages and its purpose is to allow users to visit other webpages.
-Links are found in nearly all web pages. Links allow users to click their way from page to page.
+
In HTML, you can use the `` tag to create a hyperlink.
-HTML links are hyperlinks. You can click on a link and jump to another document.
-
-When you move the mouse over a link, the mouse arrow will turn into a little hand.
-
-Note: A link does not have to be text. It can be an image or any other HTML element.
-
-In HTML, links are defined with the tag:
-
```html
link text
```
+The href attribute is very important, as it defines what the destination address is.
+
The link text is the actual visable text.
-Example
+
+
For example, if you wanted something to link to the freeCodeCamp website, you could type:
+```html
+freeCodeCamp
+```
+When run, this will display the text "freeCodeCamp", but it links to the website `"https://www.freecodecamp.org"`. Clicking on the text will send you to the specified address. Neat!
+
+### Links in images
+
+Links don't need to only be text. You can add a link to an image as well!
```html
-Visit our site for tutorials
+
+
```
-The href attribute specifies the destination address (https://www.freecodecamp.org) of the link.
-
-The link text is the visible part (Visit our site for tutorials).
-
-Clicking on the link text will send you to the specified address.
+What we do here is we put an
tag inside of an tag. This allows us to click the image to go to the link, which is `https://www.freecodecamp.org`. Double neato!
#### More Information: