Learn Basic CSS by Building a Cafe Menu - Step 17

Hiii help pleaseee… It says my meta element should have a name attribute with the value viewpoint. What am i doing wrong?

Your code so far

/* file: index.Ext.html */
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
    <Meta name="viewpoint." content="width=device-width,initial=scale=1.0"/>
</head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>
/* file: styles.Ext.css */
h1, h2, p {
  text-align: center;
}

Your mobile information:

MAR-LX1M - Android 10 - Android SDK 29

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 17

Link to the challenge:

try with meta lowercase, and removing that extra period

1 Like

Hi there!
It’s not viewpoint, that should be viewport.

1 Like

also give a space before the word initial and change the equal = to minus - after word scale.

1 Like

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