Learn CSS Colors by Building a Set of Colored Markers - Step 5

Tell us what’s happening:
my second meta on this step I cannot figure out why it doesn’t work. I’ve tried a bunch of different variations none of them work, if someone could point me in the right direction that’d be much appreciated.

Edit: I figured it out, I was making the initial-scale it’s own attribute. also do not know how to delete a thread, hence the edit
Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="viewport" content="width=device-width" inital-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/108.0.0.0 Safari/537.36

Challenge: Learn CSS Colors by Building a Set of Colored Markers - Step 5

Link to the challenge:

The value should be one string. You’ve sort of broken it into two strings. I would copy/paste it from the instructions if you are able to. Just to clarify, the value for content attribute is:

width=device-width, initial-scale=1.0

That is one string, even with the comma in it.

1 Like

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