Step 6 of css in freecode

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>Cafe Menu</title>
  <style>
       <h1>
        CAMPER CAFE 
       </h1>
  </style>
</head>
<body>
  <header>
    <h1>CAMPER CAFE</h1>
    <p>Est. 2020</p>
  </header>
  <main>
    <section>
      <h2>Coffee</h2>
    </section>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.120 Safari/537.36

Challenge: Step 12

Link to the challenge:

You aren’t supposed to move the header into there, you are supposed to apply CSS to it.

I don’t understand what you’re trying to say

CSS goes inside the <style></style> section. This:

       <h1>
        CAMPER CAFE 
       </h1>

is HTML. You weren’t supposed to move that. You were supposed to add the correct CSS in the style section.

If you don’t know how to do that, read the instructions and see what property they suggest using and do what developers do when they can’t remember something - google it.

If you need more help, please ask a specific question, explaining what is confusing you.

1 Like

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