Need help in cafe menu coding task


I can’t see what’s wrong here it’s asking to add


element between header and main elements?

At what step you are?

I guess this is step 67

You must add the <hr> tag between first </header> and <main>.

Solution
  <header>
        <h1>CAMPER CAFE</h1>
        <p class="established">Est. 2020</p>
      </header>
      <hr>
      <main>
        <section>
          <h2>Coffee</h2>
          <article class="item">
            <p class="flavor">French Vanilla</p><p class="price">3.00</p>
          </article>

Oh got it…Thanks again

Next time please provide the actual code and not an image, as well as a link to the challenge.
Also take a moment to look at the text editor in the forum (above the test-field) to properly format code, as the forum will try to render html-elements. If you look into your first post, it did add the horizontal line instead of writing <hr> :wink:

Finally, if you got the answer, consider marking the corresponding post as “solution” (should be an option on the bottom of the post).

Yes, but is a little hard to provide the code at (Beta) version…

Here is how to post code in the forum

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor ( </> ) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

1 Like

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