HTML-Paragraphs

HTML-Paragraphs

The Basics

So in my first post, we talked about header tags now we'll move into paragraph tags.

Paragraphs in your HTML

HTML paragraph tags are used to create paragraphs on a web page. They are represented by the <p> and </p> tags. The content between these tags is displayed as a block of text separated from adjacent blocks by blank lines, white spaces, or first-line indentation.

Here’s an example of how to use the paragraph tags:

<p>Let's dive into paragraphs</p>
<p>I lovecoding</p>

The above code will create two paragraphs, each containing the text inside the <p> and </p> tags.

We see that it's pretty easy right?

In future posts talk about editing our paragraphs.