Help needed in step 5

Hello everyone
Please I need to know how to nest this self closing element in this step.
Should the given name attributes be separated by a comma or self closed separately.
I sincerely hope my explanation makes sense.

  **Your code so far**
<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" width=device-width, meta="content" initial-scale=1.0 />

  <meta charset="utf-8">
  <title>Colored Markers</title>
</head>
<body>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.53

Challenge: Step 5

Link to the challenge:

You are nesting it correctly, you just aren’t writing it correctly.

It needs to have to things:

  • a name attribute with the value set to viewport (you have done this)
  • a content attribute with the value set to width=device-width, initial-scale=1.0 (you have not done this)

The content attribute should be formatted exactly the same as the name attribute.

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