Inform with the Paragraph Element#
p
标签的用法#
p
elements are the preferred element for normal-sized paragraph text on websites. P is short for "paragraph".
在网页中使用p
标签创建段落文本。“P"是”paragraph“的简写。
You can create a p
element like this:
·p
标签的格式如下所示:
<p>
I'm a p tag!
</p>
Create a p
element below your h2
element, and give it the text "Hello Paragraph".
在h2
标签的下方插入一个p
标签,其文本文字为:“Hello Paragraph”。
- Create a
p
element. - 创建一个
p
标签。 - Your
p
element should have the text "Hello Paragraph". -
p
标签应含有“Hello World”文本。 - Make sure your
p
element has a closing tag. -
p
标签中应含有相应的关闭标签。
<h1>
Hello World
</h1>
<h2>
CatPhotoApp
</h2>
<p>
Hello Paragraph
</p>
网友评论