Search code examples
htmlcssstylesheet

HTML/CSS Stylesheet won't work


I'm probably missing something really obvious but why won't this code work?

<link type="stylesheet" href="css/main.css">

Basically, I'm trying to get a stylesheet that is called main.css in a folder called css.

I don't know why it won't work so please help me!

Probelm Solved


Solution

  • Wrong syntax:

    <link rel="stylesheet" type="text/css" href="css/main.css" />
          ^^^              ^^^^
    

    Note the attributes...