From 05365931cd093637e24c5c2dafb73f8ea2e2d652 Mon Sep 17 00:00:00 2001 From: Kowsalya B <117632014+Kows3002@users.noreply.github.com> Date: Fri, 27 Mar 2026 13:13:29 +0530 Subject: [PATCH] fix(Curriculum): add note explaining anchor tag in HTML attributes lesson (#66643) --- .../6708143cab2b583ecd3324f5.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md b/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md index f91c25c2090..04b537a068a 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-html-attributes/6708143cab2b583ecd3324f5.md @@ -17,6 +17,8 @@ The attribute name is followed by an equal sign (`=`) and a value in quotes. The This first example uses the `href` and `target` attributes. The `href` attribute specifies the URL of a link and the `target` attribute specifies where to open the link. +**Note:** The `a` element, also known as the anchor element, is used to create hyperlinks. The text between the opening and closing `a` tags is the clickable part users select to navigate. + Enable the interactive editor and change the `href="https://www.freecodecamp.org/news/"` to `href="https://www.freecodecamp.org"`. Now when you click on the link in the interactive editor, you will see the freeCodeCamp homepage in a new browser tab. :::interactive_editor