HTML

tag

(*-*)浩
Release: 2019-09-20 15:34:39
Original
2381 people have browsed it

HTML

Tag

HTML <p> tag

##All major browsers support the

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>
Copy after login

The above is the detailed content of HTML

tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Previous article:HTML
tag Next article:HTML