<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"/>
<div class="menu">
<main>
<h1>CAMPER CAFE</h1>
<p>Est. 2020</p>
<section>
<h2>Coffee</h2>
<article>
<p>French Vanilla</p>
<p>3.00</p>
</article>
<article>
<p>Caramel Macchiato</p>
<p>3.75</p>
</article>
<article>
<p>Pumpkin Spice</p>
<p>3.50</p>
</article>
<p>Hazelnut</p>
<p>4.00</p>
<article>
<p>Mocha</p>
<p>4.50</p>
</article>
</section>
</main>
</div>
Step 31 is telling me there should be 5 article elements. I dont undersand what that means. Does article elements need a closing tag?