Nest Many Elements within a Single div Element()

Tell us what’s happening:
Nest your “Things cats love” and “Things cats hate” lists all within a single div element.

Hint: Try putting your opening div tag above your “Things cats love” p element and your closing div tag after your closing ol tag so that both of your lists are within one div .

Your code so far


<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" 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>
  </ol>
  
  <form action="/submit-cat-photo">
    <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
    <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
    <label><input type="checkbox" name="personality" checked> Loving</label>
    <label><input type="checkbox" name="personality"> Lazy</label>
    <label><input type="checkbox" name="personality"> Energetic</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>

What difficulties are you having with this? There is something you don’t understand of the challenge description?

am have difficulties understanding the question

[/quote]

div is an html element
There they are asking you to use a div element to wrap certain things already written there

Hint: Try putting your opening div tag above your “Things cats love” p element and your closing div tag after your closing ol tag so that both of your lists are within one div .

ok thank for your assistance

If you have any problems with a question, you can then write a hint in the GitHub repository

thanks for your help