<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
https://www.codecademy.com/courses/learn-html-css/lessons/css-setup/exercises/css-file
1.Take a look at index.html. Cut the CSS code in between the opening and closing tags and paste it directly in the new file called style.css.
2.Delete the remaining element from index.html.
I have a problem in step 2. I removed style and it keeps throwing the error : Did you remove the element?
<!DOCTYPE html>
<html>
<head>
<title>Animals Around the World</title>
</head>
<body>
<h1>The Brown Bear</h1>
<p>The brown bear (Ursus arctos) is native to parts of northern Eurasia and North America. Its conservation status is currently "Least Concern." There are many subspecies within the brown bear species, including the Atlas bear and the Himalayan brown bear.</p>
<a href="https://en.wikipedia.org/wiki/Brown_bear">Learn More</a>
<p>Here are some bear species:</p>
<ul>
<li>Arctos</li>
<li>Collarus</li>
<li>Horribilis</li>
<li>Nelsoni (extinct)</li>
</ul>
<p>The following countries have the largest populations of brown bears:</p>
<ol>
<li>Russia</li>
<li>United States</li>
<li>Canada</li>
</ol>
<a href="https://en.wikipedia.org/wiki/Brown_bear" target="_blank">
<img src="https://s3.amazonaws.com/codecademy-content/courses/web-101/web101-image_brownbear.jpg" /></a>
</body>
</html>