+ 1
What is <p>
What is <p>
6 Respostas
+ 3
<p> is a html tag that creates a paragraph. Example:
Code:
<p>This is paragraph 1</p>
<p>This is paragraph 2</p>
Output:
This is paragraph 1
This is paragraph 2
+ 3
Hi! Please, see this guide: 👇
https://www.geeksforgeeks.org/html/html-paragraph/
0
its used to display text paragraph
0
P is the paragraph
<p>
0
Paragraph
0
<p> is an HTML element used to create text. It is the most basic and most commonly used way to make text in HTML code! To make it work you need to have an opening tag <>, and a closing tag </>. Of course, add the ‘p’ in between them lol. For example-
<p>My amazing text</p>