48.1k views
4 votes
Which HTML tag is used to add a paragraph to a web page?

1 Answer

2 votes

Answer:

the HTML tag for the paragraph is <p>.

Step-by-step explanation:

To insert the paragraph in the website, use the <p> tag to start the paragraph and to end the paragraph, use the closing paragraph tag that is </p>.

The paragraph tag is used inside the body tag. for example,

<html>

<head></head>

<body>

<p>this is a paragraph

</p>

</body>

</html>

User Ortsigat
by
5.0k points