The code wont pass even though I' am creating the correct meta element inside the <head> element

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

  **Your code so far**
<!DOCTYPE html>
<html>
<head>
  <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/103.0.0.0 Safari/537.36

Challenge: Step 4

Link to the challenge:

Inside the head add the below

<meta charset="utf-8" />

You are missing the self closing part

@adominguezl800 The test should pass without the forward slash at the end of the <meta> tag now. At one time there was a bug in the tests requiring the forward slash, but it has been fixed. So your HTML above is fine. Go ahead and try it again.

Thanks [bbsmooth], it work

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