freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-e...

1.2 KiB

id challengeType videoUrl forumTopicId title
bad87fee1348bd9aedf08801 0 https://scrimba.com/p/pVMPUv/ceZ7DtN 18202 用 p 元素代表段落

Description

pparagraph的缩写,通常用来创建一个段落,就和你写作文一样。 你可以像这样创建一个段落: <p>I'm a p tag!</p>

Instructions

h2元素下面新增一个p元素,元素内容是:Hello Paragraph

Tests

tests:
  - text: '创建一个<code>p</code>元素。'
    testString: assert(($("p").length > 0));
  - text: '<code>p</code>元素的内容应为:<code>Hello Paragraph</code>。'
    testString: assert.isTrue((/hello(\s)+paragraph/gi).test($("p").text()));
  - text: '<code>p</code>元素应该有结束标记。'
    testString: assert(code.match(/<\/p>/g) && code.match(/<\/p>/g).length === code.match(/<p/g).length);

Challenge Seed

<h1>Hello World</h1>
<h2>CatPhotoApp</h2>

Solution