Can somebody help me, I don’t know what I am doing wrong. It keeps saying that I have errors, but I did every part of it.
Thank you
Can somebody help me, I don’t know what I am doing wrong. It keeps saying that I have errors, but I did every part of it.
Thank you
When the tests fail you can click on the red button to see which test(s) failed and an explanation of what the test is looking for and how you can fix it.
Or are you have a problem understanding what the failing test is telling you?
I have a problem understanding why they are failing
@omarfili, one thing you can do to help yourself is run your HTML code through the W3C validator.
Remember, an id
must be unique within the document. You have duplicates.
Cleaning them up will pass the tests.
You may want to address the other errors too though since you copy/paste from codepen you can ignore the first two errors.
If I was to review this I’d also tell you to not use <br>
to force line breaks or spacing. That’s what CSS is for.