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 812cc1d63a..3cb27ba753 100644
--- a/guide/english/html/tutorials/how-to-use-links/index.md
+++ b/guide/english/html/tutorials/how-to-use-links/index.md
@@ -32,6 +32,16 @@ Links don't need to only be text. You can add a link to an image as well!
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!
+## Using Target Attribute
+
+The target attribute specifies where to open the linked document."_blank" on target attribute mean opens the linked document in a new window or tab. This example will open the linked document in a new browser window/tab.
+
+Example
+
+```html
+Visit our site for tutorials
+```
+
#### More Information:
* [MDN - HTML Reference](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a)