Learn Basic CSS by Building a Cafe Menu - Step 17

Tell us what’s happening:
Describe your issue in detail here.
been trying to add a meta element with a special content attribute. what am i doing wrong

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"></meta>
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
     <meta name="viewport" content="width=device-width>
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <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 (Macintosh; Intel Mac OS X 10.14; rv:105.0) Gecko/20100101 Firefox/105.0

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

Link to the challenge:

try to copy the value exactly from the exercise (you can just use your mouse to copy and paste it in. Don’t forget to enclose it in double quotes)

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