Suggest :
You need 2 p elements with Kitty Ipsum text.
Make sure each of your p elements has a closing tag.
Your p element should contain the first few words of the provided additional kitty ipsum text.
Your code should have one main element.
The main element should have two paragraph elements as children.
The opening main tag should come before the first paragraph tag.
The closing main tag should come after the second closing paragraph tag.
— I can create two p elment but why is not true . Help me !!!
Please, post your code in here.
- You need two paragraph tags like this,
<p>This is my first paragraph</p>
, and<p>This is the second paragraph</p>
and copy the ‘kitty Ipsum text’. It should be provided in the instructions section. - make sure you have a
</p>
tag to close the paragraph tag. So this is how to open a paragraph tag<p>
and this is how to close the paragraph tag</p>
. Here is an example.
<p>
This is a paragraph
</p>
- Your code should have a
<main></main>
element. - Your
<main></main>
element should have two<p></p>
elements inside like this
<main>
<p>1st child of the paragraph element</p>
<p>2nd child of the element paragraph</p>
</main>
- The
<main></main>
element should come before the<p></p>
element. Check the above code. - The closing main tag should come after the second closing paragraph tag. Check the above code.
Okay, I hope that helps and happy coding. Your doing well.
2 Likes
Thanks man, Hi, because I short < main> tag, I feel element the tag new in HTML becasue I dont used to it and I don’t know the functions it ?
The closing main
tag should come after the second closing paragraph tag.
i don’t understand this phrase can someone kindly elaborate