CSS variables step 4

Step 4

Within the head, nest a meta element with a charset of UTF-8, a title element with a title of City Skyline, and a link element that links your styles.css file.

and my code is

<head>
      <meta charset="UTF-8">
      <title>City Skyline</title>
      <link rel="stylesheet" href="style.css"/>
  </head>

Test

Sorry, your code does not pass. Try again.

Hint

You should have one self-closing link element.

Please post a link to the step you are on.

1 Like

Your style link needs to go to “styles.css”instead of “style.css”.

link rel=“stylesheet” href=“styles.css”

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.