0
I still can't get this to work! re: code repo 20.2 Web Dev
https://code.sololearn.com/WqAmMfhcZSTW/?ref=app I made the changes that were recommended, but the output still des not match the image of what is expected. Plase tell me what I'm missing and how to fix it
2 Réponses
0
You add `class id="buy"` at line 39 where a <section> closing tag is. You should be adding id attribute to the <section> opening tag at line 40 instead
Line 39:
</section class id = "buy"> <!-- remove `class id = "buy"` -->
Line 40:
<section id="buy"> <!-- add id attribute -->
0
Thank you! I get confused between id and class