I face some problem i my project challenges . i need some one help?

I want an unordered list inline with the paragraph (or unorderList is on the same line with my paragraph) but my paragraph goes to the new line .
how to fix this ?. here my code.

<style>
ul 
{
  text-align: center;
  list-style: inside;
display: inline;

}
</style>
<ul>
<li><p>I am cat let me scratch</p></li>
    </ul>

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums

you can’t do that… the paragraphs are block elements, or you try to set that to be an inline element (I have never tried that so I don’t know how it will work) or I don’t know what you could do

why do you want a p inside a ?