Solution in 67 step that hr element

<meta charset="utf-8" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>Cafe Menu</title>

<link href="styles.css" rel="stylesheet" type="text/css" />
<div class="menu">

  <header> <hr>

    <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>

      <article class="item">

        <p class="flavor">Caramel Macchiato</p><p class="price">3.75</p>

      </article>

      <article class="item">

        <p class="flavor">Pumpkin Spice</p><p class="price">3.50</p>

      </article>

      <article class="item">

        <p class="flavor">Hazelnut</p><p class="price">4.00</p>

      </article>

      <article class="item">

        <p class="flavor">Mocha</p><p class="price">4.50</p>

      </article>

    </section>

    <section>

      <h2>Desserts</h2>

      <article class="item">

        <p class="dessert">Donut</p><p class="price">1.50</p>

      </article>

      <article class="item">

        <p class="dessert">Cherry Pie</p><p class="price">2.75</p>

      </article>

      <article class="item">

        <p class="dessert">Cheesecake</p><p class="price">3.00</p>

      </article>

      <article class="item">

        <p class="dessert">Cinnamon Roll</p><p class="price">2.50</p>

      </article>

    </section>

  </main>

  <footer>

    <p>

      <a href="https://www.freecodecamp.org" target="_blank">Visit our website</a>

    </p>

    <p>123 Free Code Camp Drive</p>

  </footer>

</div>

do you have a question? please explain.

I need help that add hr element between the first header and main elements

you need to add a hr tag between the head and the main element which will create a horizontal line between both the elements. It is same like creating any other element like body or div, except the hr tag is a self closing tag.

do not need to create hr tag here.

hello, i already tried this but it keeps on telling me its wrong

nevermind i resolved it thanks

CAMPER CAFE

Est. 2020


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