How to create a paragraph in HTML?

To create a paragraph in HTML, you can use the <p> element. The <p> element represents a paragraph in an HTML document.

Here is an example of how you can use the <p> element to create a paragraph:

<p>This is a paragraph. It contains some text that is structured as a paragraph.</p>

You can also style the paragraph using CSS. For example, you can change the font size, font family, text color, and other properties of the paragraph. Here is an example of how you can style a paragraph using CSS:

<style>
  p {
    font-size: 18px;
    font-family: Arial, sans-serif;
    color: #333;
  }
</style>
<p>This is a paragraph with custom styles applied to it using CSS.</p>