Hi, I not sure what I have to do in this exercise. what is " styles.css file"
exercise says: Your styles.css file should have the h1, h2, p type selector.
Till before challenge you have written the code in HTML file itself. This is not a good practice. You need to maintain separate file for CSS. The challenge says they have created a file for CSS called Styles.css. All you have to do is Copy/Paste the code inside the style tag to the Styles.css file. Remember no need of adding style tags in CSS file. Let me know if you are able to solve the challenge now.
Yes you need to write the code which you have written in <style></style> in style.css file. You can reset the challenge to observe the style.css file mentioned top left beside the HTML file.
As h1{// h1 styles} p{//p styles} and so on. have the same property that is text-align: center; So, you can rewrite the style.css file as h1, p, h2{//common property}.
Hi @osx77 , to solve this exercise issue you should look up, on the top left side of your page and you should find “index.html” (in black) and “syles.css” (in white). Click on the second one (that is your css file) and that is where you should have your code that is requested from the exercise.