HTML Basics II: Question 13. Aligning the Text

<head>
	<title>Sexy background color!</title>
</head>
<body>
	<h3 style="text-align:center">Favorite Football Teams</h3>
		<ul>
			<li stlye="text-align:left">The Hawthorn Football Club</li>	
			<li stlye="text-align:center">San Franscisco 49ers</li>
			<li stlye="text-align:right">Barcelona FC</li>
		</ul>			
</body>

Here is what i wrote, however when i hit submit it replies with “Oops, try again. Make sure you use ‘text-align:center’ for the second

  • tag.”

    Whats wrong with my HTML?

  • You misspelled style in all three lists.

    Thank you so much, im not good at picking up on stuff like spelling mistakes