From 1dec233850eb09e38d9876311137ced99c14bf41 Mon Sep 17 00:00:00 2001 From: AnanduA-6 <110352302+AnanduA-6@users.noreply.github.com> Date: Tue, 28 Jan 2025 05:49:09 +0530 Subject: [PATCH] fix(curriculum): add extra hint for anchor elements test in travel agency lab (#58421) --- .../lab-travel-agency-page/669e2f60e83c011754f711f9.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/25-front-end-development/lab-travel-agency-page/669e2f60e83c011754f711f9.md b/curriculum/challenges/english/25-front-end-development/lab-travel-agency-page/669e2f60e83c011754f711f9.md index 982b3113401..cff742c4006 100644 --- a/curriculum/challenges/english/25-front-end-development/lab-travel-agency-page/669e2f60e83c011754f711f9.md +++ b/curriculum/challenges/english/25-front-end-development/lab-travel-agency-page/669e2f60e83c011754f711f9.md @@ -247,7 +247,7 @@ for (let image of images) { } ``` -Each `a` element should have an `href` attribute with the value of `https://www.freecodecamp.org/learn`. +Each `a` element should have an `href` attribute with the value of `https://www.freecodecamp.org/learn`. Don't forget the links in the list items. ```js const anchors = document.querySelectorAll('a'); @@ -257,7 +257,7 @@ for (let anchor of anchors) { } ``` -Each `a` element should have a `target` attribute with the value of `_blank`. +Each `a` element should have a `target` attribute with the value of `_blank`. Don't forget the links in the list items. ```js const anchors = document.querySelectorAll('a');