Issues with html <meta> tag on learn-the-css-box-model-by-building-a-rothko-painting step-2

I’m working on the “Learn the css box model by building a rothko painting step-2” part of the New responsive design course but can’t proceed even though I am confident I am correct.


The step asks me to:

Step 2

Within the head element, add a meta tag which sets the charset to UTF-8, and a title element with the value Rothko Painting.

Within the body element, add an img element with a src of https://cdn.freecodecamp.org/curriculum/css-box-model/diagram-1.png.


My code stands as such:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Rothko Painting</title>
  </head>
  <body>
    <img src="https://cdn.freecodecamp.org/curriculum/css-box-model/diagram-1.png">
  </body>
</html>

But I recieve this when I check my code.

image

Thanks in advance for any help.

Your HTML passes for me. What browser/version/OS are you using. If you aren’t using a recent browser then that could be causing this issue. In that case, you might try switching to a different browser or update your current one.

2 Likes

Thanks for your help.
I discovered the issue, I had left one of my extensions on.

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