Bootstrap - Use Responsive Design with Bootstrap Fluid Containers

I got the answer im just not sure if it was supposed to work. So it wont accept my closing tag as but accepted it as <\div> Or is that the same thing? When i do it with / it tells me 2 of the requirements havent been met

Your code so far

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  .red-text {
    color: red;
  }
  h2 {
    font-family: Lobster, Monospace;
  }

  p {
    font-size: 16px;
    font-family: Monospace;
  }

  .thick-green-border {
    border-color: green;
    border-width: 10px;
    border-style: solid;
    border-radius: 50%;
  }
  </div>
  .smaller-image {
    width: 100px;
  }
</style>
<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://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>

<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>
<\div>
</ol>
<form action="https://freecatphotoapp.com/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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.62

Challenge: Bootstrap - Use Responsive Design with Bootstrap Fluid Containers

Link to the challenge:

the div closing tag is incorrectly written and incorrectly placed
It should be </div> not <\div>
and it should be placed at the bottom of the file after all the html tags (all the way at the very bottom)

Originally i had it after the closing form tag but it kept telling me it was incorrect, because i kept writing the closing tag with / instead of a \ once i started writing the closing div tag with a \ it passed the test. Also i started moving around the div closing tag placement because i wasnt sure what i was doing wrong

okay. Hopefully you are good now?
If yes please mark this topic as solved by picking the post that helped you and marking it as Solution (check-mark icon)