fix(curriculum): adjusted hint img src

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Farhan Hasin Chowdhury
2022-04-09 17:41:17 +06:00
committed by GitHub
parent c92a71e11e
commit 7882ff1c94

View File

@ -74,7 +74,7 @@ Your ninth `img` element should have the `src` attribute set to `https://cdn.fre
assert(document.querySelectorAll('img')?.[8]?.getAttribute('src') === 'https://cdn.freecodecamp.org/curriculum/css-photo-gallery/9.jpg'); assert(document.querySelectorAll('img')?.[8]?.getAttribute('src') === 'https://cdn.freecodecamp.org/curriculum/css-photo-gallery/9.jpg');
``` ```
Your tenth `img` element should have the `src` attribute set to `https://cdn.freecodecamp.org/curriculum/css-photo-gallery/9.jpg`. Your tenth `img` element should have the `src` attribute set to `https://cdn.freecodecamp.org/curriculum/css-photo-gallery/10.jpg`.
```js ```js
assert(document.querySelectorAll('img')?.[9]?.getAttribute('src') === 'https://cdn.freecodecamp.org/curriculum/css-photo-gallery/10.jpg'); assert(document.querySelectorAll('img')?.[9]?.getAttribute('src') === 'https://cdn.freecodecamp.org/curriculum/css-photo-gallery/10.jpg');