HTML P <p> Tag
0 3633
HTML P <p> tag is an outstanding solution for a paragraph representation on any webpage. While using numerous <p> tags in a single HTML file, the browser will automatically integrate a single blank line and some margin among two paragraphs before and after each <p> element.
The modification on margin can be carried out through CSS.
<!DOCTYPE html> <html> <head> <title> P Tag </title> </head> <body> <h2>Example of P tag</h2> <p>This is first paragraph.</p> <p>This is second paragraph.</p> <p>This is third paragraph.</p> </body> </html>
Output:
Share:
Comments
Waiting for your comments