Paragraph Tags
Hello Guys, Today we talk about the paragraph tag in HTML.
Most simply, this tag helps to write the contents on web pages.
Why we use paragraph tags?
Paragraph is used to write paragraphs into webpages. Paragraphs help to write lots of content. Using paragraph tag we can apply style and other things to a particular paragraph.
How to write big paragraphs into HTML?
Writing paragraphs content in between P element.
For example:-
<!doctype HTML>
<html>
<head>
</head>
<body>
Output of code |
<p> paragraphs content.......
</p>
<p> Second Paragrah content...
</p>
</body>
</html>
It's all about paragraph tag in HTML.
We you have any doubt let me know :)