Placing the meta tags viewport with the content attribute

Please can someone help me with this, i don’t know how I’m wrong

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <meta charset="utf-8" />
  <title>Cafe Menu</title>
  <link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
  <header>
    <h1>CAMPER CAFE</h1>
    <p>Est. 2020</p>
  </header>
  <main>
    <section>
      <h2>Coffee</h2>
    </section>
  </main>
</body>
<html>
/* file: styles.css */
h1, h2, p {
text-align: center;
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; U; Android 11; SM-A5070 Build/RP1A.200720.012; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/87.0.4280.141 Mobile Safari/537.36 OPR/62.5.2254.61243

Challenge: Step 18

Link to the challenge:

Put a space after the comma before initial-scale.

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1 Like

Thank you for the solution

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