Skip to content

Commit 1dec233

Browse files
fix(curriculum): add extra hint for anchor elements test in travel agency lab (freeCodeCamp#58421)
1 parent c807c12 commit 1dec233

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

curriculum/challenges/english/25-front-end-development/lab-travel-agency-page/669e2f60e83c011754f711f9.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ for (let image of images) {
247247
}
248248
```
249249
250-
Each `a` element should have an `href` attribute with the value of `https://www.freecodecamp.org/learn`.
250+
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.
251251

252252
```js
253253
const anchors = document.querySelectorAll('a');
@@ -257,7 +257,7 @@ for (let anchor of anchors) {
257257
}
258258
```
259259

260-
Each `a` element should have a `target` attribute with the value of `_blank`.
260+
Each `a` element should have a `target` attribute with the value of `_blank`. Don't forget the links in the list items.
261261
262262
```js
263263
const anchors = document.querySelectorAll('a');

0 commit comments

Comments
 (0)