HTML p paragraph tag (tag)
HTML <p> tag is used to describe a paragraph of text (paragraph), the browser will help you make line breaks and margins between paragraphs by default.
If you do not use the appropriate HTML tags to arrange the content of the web page, for example, if you write directly in the HTML file:
This is the first paragraph
This is the second paragraph
The above content will actually look like the following on the screen:
This is the first paragraph of text This is the second paragraph of text
If using paragraph tags:
<p>This is the first paragraph</p>
<p>This is the second paragraph</p>
The actual appearance on the screen will look like this:
This is the first paragraph
This is the second paragraph
Post a Comment
0 Comments