HTML Tag
tag.
Definition and usage(Recommended learning: HTML Getting Started Tutorial)
tag definition paragraph.
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 the paragraph:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>页面</title> </head> <body> <p>这是一个段落。</p> <p>这是一个段落。</p> <p>这是一个段落。</p> </body> </html>
The above is the detailed content of HTML
tag. For more information, please follow other related articles on the PHP Chinese website!