diff --git a/curriculum/challenges/english/03-front-end-development-libraries/bootstrap/make-images-mobile-responsive.md b/curriculum/challenges/english/03-front-end-development-libraries/bootstrap/make-images-mobile-responsive.md
index 54c1ec8e26..eafea380ce 100644
--- a/curriculum/challenges/english/03-front-end-development-libraries/bootstrap/make-images-mobile-responsive.md
+++ b/curriculum/challenges/english/03-front-end-development-libraries/bootstrap/make-images-mobile-responsive.md
@@ -8,7 +8,7 @@ dashedName: make-images-mobile-responsive
# --description--
-First, add a new image below the existing one. Set its `src` attribute to `https://bit.ly/fcc-running-cats`.
+First, add a new image below the existing one. Set its `src` attribute to `https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg`.
It would be great if this image could be exactly the width of our phone's screen.
@@ -34,10 +34,10 @@ Your new image should not have the class `smaller-image`.
assert(!$('img:eq(1)').hasClass('smaller-image'));
```
-Your new image should have a `src` of `https://bit.ly/fcc-running-cats`.
+Your new image should have a `src` of `https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg`.
```js
-assert($('img:eq(1)').attr('src') === 'https://bit.ly/fcc-running-cats');
+assert($('img:eq(1)').attr('src') === 'https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg');
```
Your new `img` element should have a closing angle bracket.
@@ -87,7 +87,7 @@ assert(