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

Tell us what’s happening:

Console test states:
4. Your two meta elements should be inside the head element.

Both meta elements sit within . Is there somewhere else they should sit? I have tires

Your code so far

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

<!-- User Editable Region -->

  <head> 
    <title>Colored Markers</title>
    <meta charset="utf-8"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  </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/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15

Challenge Information:

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

Hi and welcome to the forum :wave:

Here is the original code:

  <head>
    <meta charset="utf-8">
    <title>Colored Markers</title>
  </head>

You’ve moved the first meta element under the title element. You just need to leave it where it is, and add another under title

Hey, thank you!

I have tried that and still end up with the same result,
Code below:

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

Console reads:
// running tests
4. Your two meta elements should be inside the head element.
// tests completed
// console output
[SyntaxError: Invalid regular expression: invalid group specifier name]

Below the title element. I guess you added the meta element and then the title element. Just continue after that after the title element.

Regardless of where the title sits it states that the two meta elements must be within the head element, which they are. Am I misunderstanding?

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

4. Your two meta elements should be inside the head element.

Welcome to the forum @elijahc2001

Your code passes.
Reset the step and try again. If that doesn’t work, refresh the page, disable dark mode, disable ad blockers. Or, use another browser.
If the above steps do not work, you may need to restart the computer.

Happy coding