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

Tell us what’s happening:
It is telling me that " Your new meta element should have a name attribute set to viewport , and a content attribute set to width=device-width, initial-scale=1.0 " but it looks like the example? Can someone tell me what I am doing wrong?

Your code so far

<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device width, inital-scale=1.0">
    <title>Colored Markers</title>
  </head>

<!-- User Editable Region -->

  <body>
  </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/116.0.0.0 Safari/537.36

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

Link to the challenge:

Wow I spent a while on that one too :rofl:.
Just a typo mistake - it should be : width=device-width, initial-scale=1.0 .

Add a dash between your device-width and switch ‘inital’ to ‘initial’.
Hope this helps.

1 Like

That worked! honestly its the typos that mess me up! Thank you so much!

1 Like

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