I am stuck at the 2nd bootstrap track

It says add image below the existing image and i did and its not working.

`<div class="container-fluid">
  <h2 class="red-text">CatPhotoApp</h2>

  <p>Click here for <a href="#">cat photos</a>.</p>

  <a href="#">
    <img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat">
 
  </a>
     <img class="image-responsive" src="https://bit.ly/fcc-running-cats">
  

  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <form action="/submit-cat-photo">
    <label><input type="radio" name="indoor-outdoor"> Indoor</label>
    <label><input type="radio" name="indoor-outdoor"> Outdoor</label>
    <label><input type="checkbox" name="personality"> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Crazy</label>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</div>`

I tried inside the a tag too. Its from the topic “Make imaged Mobile responsive”

Hi @suyesh [quote=“suyesh, post:1, topic:2889”]
“image-responsive”
[/quote]
You have image it needs to be img like this: class="img-responsive"
as the class name is img not image

1 Like

@coffecoder, you… why didn’t it tell me you answered until hallway typing the same thing?