From 36000eeb36c79374581f5ff6c9460e51d27b9584 Mon Sep 17 00:00:00 2001 From: Jean Jordaan Date: Sat, 16 Mar 2019 15:50:13 +0700 Subject: [PATCH] Update link-to-external-pages-with-anchor-elements.english.md If you write "`anchor` element" instead of "`a` element", you should also write "`hyperreference` attribute", instead of "`href` attribute". Suggestion: write "`a` (_anchor_) element", or "anchor (`a`) element", to communicate the element name explicitly and gloss it at the same time. The `` sections should be valid code as far as possible. --- .../link-to-external-pages-with-anchor-elements.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements.english.md index a5b681222e..2058fcdf53 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements.english.md @@ -7,8 +7,8 @@ videoUrl: 'https://scrimba.com/p/pVMPUv/c8EkncB' ## Description
-You can use anchor elements to link to content outside of your web page. -anchor elements need a destination web address called an href attribute. They also need anchor text. Here's an example: +You can use a (_anchor_) elements to link to content outside of your web page. +a elements need a destination web address called an href attribute. They also need anchor text. Here's an example: <a href="https://freecodecamp.org">this links to freecodecamp.org</a> Then your browser will display the text "this links to freecodecamp.org" as a link you can click. And that link will take you to the web address https://www.freecodecamp.org.