Learn Accessibility by Building a Quiz - Step 2

Tell us what’s happening:
Hey guys, i’m stuck on Step 2 of [Learn Accessibility by Building a Quiz], as you see I inserted the correct meta element with UTF-8 value, why it keep telling me it’s wrong? Thank you very much!
Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

§  <head>
    <meta charset="UTF-8" />                              
    <link rel="stylesheet" href="styles.css" />
  </head>

<!-- User Editable Region -->

  <body>
  </body>
</html>

/* file: styles.css */
body {
  background: #f5f6f7;
  color: #1b1b32;
  font-family: Helvetica;
  margin: 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: Learn Accessibility by Building a Quiz - Step 2

Link to the challenge:

You don’t really have this symbol in there, do you? If you do, you need to remove it.

If that isn’t your issue then your browser might be inserting additional meta elements behind the scenes. Usually this is due to added browser extensions. If you have installed extensions then you will probably need to deactivate them one by one until you find the one causing the issue. I’d start with any that change the page, such as dark mode extensions.

Hey! I’ve run you suggestions, deactivated extensions and night mode and nothing happened. I was using Chrome and didn’t found the symbol anywhere on my code. then changed for safari and the symbol disappeared and I’m done. All fine now! Thanks!

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