Basic CSS - Step 17

I have completed all the tasks but step 17 still baffles me. I cannot find a typo if there is one.

Hello there!
Can you please copy paste your code here so its easier for others to help you.

Cafe Menu /* This is my line of code */ ![screenshot|353x500](upload://9OX0noNwHNWjflVS4rkWhKND5EB.png)

Please post your actual code instead of a picture. Thanks

I’ve tried, but it takes the html tags and hides them. I cannot post through the help button.

< head>
    < meta charset="utf-8" />
    < title>Cafe Menu</title>
    < link rel="stylesheet" href="styles.css" /> My line of code.
  < /head>

The initial space is not there. It’s only a trick to escape the html tags to make them visible.

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

1 Like
<head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <link rel="stylesheet" href="styles.css" />
  </head>

The code you have shared works on my end. Please ensure that you have disabled any extensions that interface with the freeCodeCamp website (such as Dark Mode and Ad Blocker), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

2 Likes

This was the solution. Although I had to try it on another PC. Maybe there was an extension I missed but it did do the trick. Thank you.

1 Like

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