Create an Ordered List| Help can't find the error

Tell us what’s happening:

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%;
  }

  .smaller-image {
    width: 100px;
  }
</style>

<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" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></a>

<ul>Things cats love:
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>



<ol>Top 3 things cats hate:
<li>1</li>
<li>2</li>
<li>3</li>
</ol>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/create-an-ordered-list

Your tags are wrong, I think. You need something like:

> <p>List text</p>
> <ol>
> <li>Item 1</li>
> <li>Item 2</li>
> <li>Item 3</li>
> </ol>

i don’t know what was wrong but when i refreshed the page it went to the next challenge :slight_smile: but thank you :slight_smile: