Build a "Product Cards" application.
After clicking the button:
for loop to generate 6 product cardsBuydiv class="card"h2 class="card-name"p class="card-price"button with the text Buy<div class="card">
<h2 class="card-name">Product 1</h2>
<p class="card-price">100$</p>
<button>Buy</button>
</div>
for loop from 1 to 6100$
200$
300$
400$
500$
600$
📌 Important:
Product numbering must be generated through the for loop.
Do not change anything in the HTML.