Learn Accessibility by Building a Quiz - Step 3

###ive fixed it and still am having issues

Your code so far

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

<!-- User Editable Region -->

  <head>
  <meta charset="UTF-8"/>
   <meta name="viewport" content="width=device-width,initial-scale=1"/>
  <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 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36

Challenge Information:

Learn Accessibility by Building a Quiz - Step 3

Need a space between the , and initial-scale.
meta name=“viewport” content=“width=device-width, initial-scale=1”/

You add the Greater Than and Less Than signs before and after as you have it, I am just new to the forum and for some reason when I include it with the code, the whole block disappears from my reply lol

3 Likes

Hey @SeanJ welcome to the forum
Your code looks ok I would suggest you reset the step and try running the code again,if it doesn’t work try a different browser .
Some browser extensions, such as ad-blockers and dark mode extensions can interfere with the tests. If you face issues, it is recommended disabling extensions that modify the content or layout of pages, while taking the course.

Happy coding

4 Likes

Hello @SeanJ !

It appears there needs to be a space added after the comma here. Then it will pass.

Keep up the good progress and happy coding!

3 Likes

Welcome to the community.
Just a tip.
The forum guidelines are that we are not to provide the exact solution. It is good that the complete code did not post.
We can provide guidance.
In this way, we are allowing the person to learn so they can use it for projects and work if they are looking at using their programming skills for employment.

Happy coding!

1 Like

Oh, ok. I appreciate that information! My apologies for any confusion I had. It’s been a while since I participated in FCC also and I never was involved with the forums the last time. We all learn something new every day!

1 Like

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