Stuck on Step 5 Multiple Attributes in an Element

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

I guess what is giving me the most trouble is how do I add a content attribute inside an element and set the value to width=“device-width”. That would look like content=“width=device-width” right?

  **Your code so far**
<!DOCTYPE html>
<html>
<head>
  <meta name="viewport"
  content=width="device-width"
  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/102.0.5005.63 Safari/537.36 Edg/102.0.1245.39

Challenge: Step 5

Link to the challenge:

You created the meta element correctly and set the name attribute correctly, now you just need to set the content attribute correctly. I know it looks a little weird, but the value of the content attribute should be width=device-width, initial-scale=1.0.

1 Like

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