Hello everyone,
Would you please spot the error?
I have been trying to execute the code, but it showed that there must be at least 5 code elements and 10
elements. It is already there. Would you please help with that?
Hello everyone,
Would you please spot the error?
I have been trying to execute the code, but it showed that there must be at least 5 code elements and 10
elements. It is already there. Would you please help with that?
There should be 10 elements with the p tag. And I donβt see any code.
p1
, p2
, p3
etc are not valid element names
lu
is also not a valid element name
you do not have any code
elements
Thanks @ilenia !
My understanding is that a βpβ element looks like <p> </p>
. I, thus, wonder what is exactly wrong?
correct, it looks like <p>
, not like <p1>
or <p2>
or something else like that
then you just need to just use the code
element
and also please fix the lu
element, if you want an unordered list the element name is ul
@ilenia I have rectified the
Hello~!
I loaded up your codepen, and I am still seeing that you have elements <p1>
, <p2>
, etc. These are not valid HTML elements - instead, they should be <p>
elements.
Additionally, I am not seeing any <code>
elements in your HTML yet.