Can you help me discover the error in this code,
please?Hey @4bi_dev!
Welcome to the Forum!
Can you please give a link to you pen?
BTW
You are doing this project in freeCodeCamp’s pen. Make sure fork it.
Thank you.
I am really sorry, but I am a new member or user for the website and I dont understand everything her.
Have you created a account in codepen.io?
Yes, just right now.
can you give the link?
Create a New pen and code there.
Done! what is next?!
Copy the link in the Address bar and paste it here.
Here is the link : Tribute Page Project - Al-Khwarizmi (codepen.io)
The id attribute should be unique, which means you can only give it to one element in the document, for example:
correct:
<div id="ID1">
<div id="ID2"></div>
</div>
not correct:
<div id="ID1">
<div id="ID1"></div>
</div>
Take a second look at your code…
I got 10/10 what should I do next?
Ask for feedback in the forum by creating a new topic.
Always ready to help you!
If your question is answered you can mark the answer as a Solution with that little icon left to the heart(like) icon, so that the post is marked as “solved”
never mind, i don’t know why it doesn’t show


