please help!
Replace the text inside your p element with the first few words of this kitty ipsum text: Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
what do i write in here
It appears you are working on the following challenge.
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements
Also, what code have you tried so far? Do you understand what a p element looks like? There is already one p element in the existing lesson code, so you can use it as an example.
As far as the opening an closing main tags, an example I can share of opening tags of another element would be an h1 element (see below).
<h1>This is an h1 element</h1>
The <h1>
is the opening tag for the h1 element and the </h1>
is the closing tag for the h1 element. An example of wrapping element tags around other elements would be:
<div>
<h1>This is an h1 element</h1>
<a href="#home">This is an anchor element</a>
</div>
See how there is an opening div tag and closing div tag wrapping both the h1 element and the anchor element?