Any help would be appreciated thanks
<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.>
https://www.codecademy.com/courses/web-beginner-en-y2Yjd/2/2?curriculum_id=50579fb998b470000202dc8b
<In what way does your code behave incorrectly? Include ALL error messages.>
```
Replace this line with your code.
Sexy background color!
Favorite Football Teams
- The Hawthorn Football Club
- San Franscisco 49ers
- Barcelona FC
<do not remove the three backticks above>
what’s wrong?
I didn’t get what you mean, sorry
I was getting an error when i tried to proceed referring to my header. I finally found that i needed to add a space after my bracket. I think its a bug with CC
happened once before as well.
You should end your inline styling with semi-colons. see below.
<!DOCTYPE html>
<html>
<head>
<title>Sexy background color!</title>
</head>
<body>
<h3 style = "text-align: center;">Favorite Football Teams</h3>
<ol>
<li style = "text-align: left;">The Hawthorn Football Club</li>
<li style = "text-align: center;">San Franscisco 49ers</li>
<li style = "text-align: right;">Barcelona FC</li>
</ol>
</body>
</html>
Hope this helps! 
1 Like