The missing tags for <ul> and <ol>

Tell us what’s happening:
When i tried to run the program, this error messages are shown:

  1. You should have an unordered list for `Things cats loves.

  2. Your ol element should have a closing tag.
    Looking at the codes so far the

      tags - open & close tags are correct.
      Then the
        tag has a closing tag (
      ).
      so please can anyone try to identify their the problems are.

      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://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    
    <p>Things cats loves:</p>
    <ul>
       <li>Cats loves their human</li>
       <li>Cats loves Clean environment</li>
       <li>Sitting in high places watching and hiding.</li>
    </ul>
    
    <p>Top 3 things cats hate:</p>
    <ol type="1">
      <li>Dirty litter box</li>
      <li>Strangers</li>
      <li>Stale food</li>
    </ol>
    
    </main>
    
      **Your browser information:**
    

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

    Challenge: Create an Ordered List

    Link to the challenge:

    your code is fine. but the computer see differently for it these

    <p>Things cats love:</p>
    
    <p>Things cats loves:</p>
    

    aren’t the same.
    the same apply for

    <ol>
    ... 
    </ol>
    
    <ol type="1">
    ...
    </ol>
    

    This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.