Learn the CSS Box Model by Building a Rothko Painting - Step 2 (title element issue)

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

It says the title element doesn’t have “Rothko Painting.”

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"></img>
    </body>
</html>

Your mobile information:

SM-A217M - Android 12 - Android SDK 31

Challenge: Learn the CSS Box Model by Building a Rothko Painting - Step 2

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

I think it’s a bi misleading here with the word “value”.

You have a title element with a value attribute that has the value “Rothko Painting” and the text Rothko Painting. You don’t need a value attribute, just the text between the opening and closing tags.

1 Like