HTML HTML Tutorial HTML Forms HTML Graphics HTML Media HTML APIs HTML Tags



HTML Tag: p

The HTML Tag: p is one of the most commonly used tags in HTML. It stands for "paragraph" and is used to define a block of text that is separated from other blocks of text by a blank line. The p tag is used to create paragraphs of text on a web page.

The p tag is a container tag, which means that it has an opening tag and a closing tag. The opening tag is <p> and the closing tag is </p>. Any text that is placed between these two tags will be considered a paragraph of text.

The p tag can be used to format text in a variety of ways. For example, you can use the p tag to create headings, subheadings, and bullet points. You can also use the p tag to create links, images, and other types of content.

Code Examples

Here are some examples of how the p tag can be used in HTML:

Example 1:

<p>This is a paragraph of text.</p>

This code will create a simple paragraph of text on a web page.

Example 2:

<p>This is a paragraph of text with a <a href="https://www.google.com">link</a>.</p>

This code will create a paragraph of text with a link to Google.

Example 3:

<p>This is a paragraph of text with an <img src="image.jpg" alt="Image">.</p>

This code will create a paragraph of text with an image.

Example 4:

<p>This is a paragraph of text with a <ul><li>list item 1</li><li>list item 2</li></ul>.</p>

This code will create a paragraph of text with a bulleted list.

Example 5:

<p><strong>This is a paragraph of text with bold text.</strong></p>

This code will create a paragraph of text with bold text.

These are just a few examples of how the p tag can be used in HTML. There are many other ways to use this tag to format text on a web page.

Conclusion

The HTML Tag: p is a versatile tag that can be used to format text in a variety of ways on a web page. Whether you are creating a simple paragraph of text or a complex layout with images and links, the p tag is an essential tool for any web developer.

References

Activity