(Choose
1 answer)
A. <section>
Which is the best/proper way to declare a section that has an h2 heading and an unordered list?
<h2>Favorite Foods</h2>
</section> <ul>
<li>stuff</li><li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
B. <section>
<h2>Favorite Foods</h2>
<p>
<ul>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
</p>
</section>
C. <section>
<h2>Favorite Foods</h2>
<ol>
<li>stuff</li>
<li>more</li><li>stuff</li>
<li>again</li>
</ol>
Q: 56