Learn Basic CSS by Building a Cafe Menu - Step 17

Tell us what’s happening:
Describe your issue in detail here.
finished the entire project except for this one line of code that actually worked and is correct. hoping this can be corrected. not sure who to reach out to for this one

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>Cafe Menu</title>
  <link rel="stylesheet" href="styles.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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

Can you be a little more specific about what the issue is?

of course. so on step 17 of this project it says to create a closed link element. from what i have seen and from another post i have made the code is correct, but the system doesnt except it. because of that im sitting at a 97% complete for said project so im basically stuck

Ahh, I see now. There used to be a bug on that step that required a forward slash at the end of the <link> tag so it looked like />. That bug was fixed recently and now you don’t need the forward slash. Give it a try again (I’m assuming that was the issue).

Also, you don’t technically need to complete all of the steps in a course to get the certifications (if that is your ultimate goal). So if by “stuck” you meant that you wouldn’t be able to complete the certifications then no need to worry.

that is exactly what i meant so thank you i appreciate that. and thats the thing. either way i do it i get the error

Hmm, I just tested your HTML above on step 17 and it passed for me. Perhaps you can try it in a different browser? Regardless, not passing this one step isn’t holding you back. I guess you will have to be content with knowing that you passed the step but not getting credit for it :slight_smile:

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