Learn Accessibility by Building a Quiz - Step 3

Tell us what’s happening:
The program is asking me to create a content attribute with the definition of “width=device-width, initial-scale=1. The code doesn’t pass.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="viewport" content="width=device-width,    initial-scale=1"/>
    <meta charset="UTF-8" />
    <link rel="stylesheet" href="styles.css" />
  </head>
  <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 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1

Challenge: Learn Accessibility by Building a Quiz - Step 3

Link to the challenge:

You have some extra spaces in front of the word initial. Try removing them.

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