Could someone point out what I’m doing wrong? It would appear that I have an id=“header=img” in the right place but maybe I don’t. and yes, I’ve also put it down at the bottom.
If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
giving id/class name as such should be a bad practice.
i don’t know the exact problem but here you go.
<element id="id-name " class="class-name"></element>
<element id="idname" class="classname"></element>
When giving an element an id
or class
, give it a descriptive name, such as main-heading
or announcements
.
Avoid one-letter names like x
or c
. it is considered as a bad practice.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.