Background color - not sure where i m going wrong

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<In what way does your code behave incorrectly? Include ALL error messages.>

``` Sexy background color! <body style="background-color: brown"

Favorite Football Teams

<ol style="background-color:yellow"
  • The Hawthorn Football Club
  • San Franscisco 49ers
  • Barcelona FC
  • not able to understand where am i m going wrong...
    <do not remove the three backticks above>

    Missing > after brown"

    Same with ol tag

    Should look like this:

    <body style="background-color: brown">
    
    1 Like
    Sexy background color!
    	<h3>Favorite Football Teams</h3>
    		<ol p style="background-color: yellow;"></p>
    			<li>The Hawthorn Football Club</li>	
    			<li>San Franscisco 49ers</li>
    			<li>Barcelona FC</li>
    		</ol>			
    </body>
    

    I think I have the same problem I don’t see what I did wrong in the code

    If you styling an ordered list then you don’t put p in it, it should be like this:

    <ol style="background-color: yellow;">
    

    p is for paragraph

    Thanks zainabrawat for the heads up

    1 Like