Have a Solution dont know how to delete help request

Tell us what’s happening:
Describe your issue in detail here.

I just want to know how i delete my help request after i have the solution for my problem ?
Your code so far


<h2>CatPhotoApp</h2>
<mian>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>

<p>Purr jump eat the grass rip the couch scratched sunbathe,  shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Not too sure what you’re trying to achieve but you’ll need to correct the typo in the main tag from to as a starter

You can give an indentation to every

element on your page adding the following to your css file :

p {
text-indent: 1.5em;
}

If you want only the second paragraph to be indented you can do so using the following :

p {
text-indent: 0;
}

p + p {
text-indent: 1.5em;
}

You can find a bit more details and an example here if need be.

Cheers

1 Like

Ok I may trie that later but the thing is i have aplolutly no knolege of css i just started it today. Till now I only were doing Html.

main is misspelled. You have written mian

Im trieing to make to "children paraghraph codes between the mian code
I watched a video and the guy said u have to indent them so the program would realice the to pharaghraph codes are sort of together as a main code, its hard to discribe for me cause Im a 14yo german citizen, but I hope you can help me.

Didnt realise Im this stupid

Not really. All of us make mistakes like this. When you’re that frustrated, Sometimes you fail to find the mistake

ok thank you now the code is working

how do i delete my help request ?

I don’t really know… Maybe someone else here knows?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.