The tag that represents a paragraph in the html tag is the
tag. The
tag defines a paragraph, and the p element will automatically create some white space before and after it. The browser will automatically add these spaces, or they can also be specified in the style sheet.
#The tag representing a paragraph in the html tag is the p tag.
Tags define paragraphs.
p elements automatically create some whitespace before and after them. The browser adds these spaces automatically, or you can specify them in your stylesheet.
Example
The following code marks a paragraph:
<p>This is some text in a very short paragraph</p>
Recommended tutorial: "HTML Tutorial"
The above is the detailed content of What is the markup that represents a paragraph in html markup?. For more information, please follow other related articles on the PHP Chinese website!