I still can't get this to work! re: code repo 20.2 Web Dev | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

24th Mar 2022, 9:39 AM
Stacey Prahl
Stacey Prahl - avatar
2 Answers
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 -->
24th Mar 2022, 10:51 AM
Ipang
0
Thank you! I get confused between id and class
25th Mar 2022, 4:39 AM
Stacey Prahl
Stacey Prahl - avatar