Error with CSS application

1

I'm using Adobe Brackets for the first time, and I'm applying a style in CSS in a Small "Project" in Html, but unfortunately it's not generating results related to CSS.

    
asked by anonymous 25.01.2016 / 04:27

1 answer

1

In your second image, which would be the main.css file has a tag that does not exist:

<stily></stily>

Remove it from the code.

In addition, when the file is .css you do not need to put this tag , which would be <style> .

Another thing, you're applying CSS to h3 , but in HTML it has no h3 , but h1 .

    
25.01.2016 / 11:19