Reputation: 13
I got confused about section and article tags.I can't choose which one to use sometimes.for example if I want to make shopping website.is it ok that I use a section tag and then put article tags in it for product card?like this:
enter code here
<section class="products">
<h2>Phones</h2>
<article class="product-card"></article>
</section>
Upvotes: 1
Views: 176
Reputation:
I think the way you use <section>
and <article>
is perfectly reasonable!
<section>
<article>
A product card is one of the examples MDN mentions for <article>
Upvotes: 1