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.
Thanks in advance for any help.