?What's wrong with this

Tell us what’s happening:
Describe your issue in detail here.

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


</body>
</html>

  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.79 Safari/537.36

Challenge: Step 2

Link to the challenge:

When step 2 asks you to give the title element a value, it is asking you to place a text between the title tags.
You should place the text there instead of giving the element a value attribute.

<title>Rothko Painting</title>

Make sure there is no space between the end of the text and the closing tag of the title element.

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