Files
2022-03-23 15:22:04 +01:00

65 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: bad87fee1348bd9aedf08801
title: 用 p 元素代表段落
challengeType: 0
videoUrl: 'https://scrimba.com/p/pVMPUv/ceZ7DtN'
forumTopicId: 18202
dashedName: inform-with-the-paragraph-element
---
# --description--
`p` 元素是網站上段落文本的首選元素。 `p` 是“paragraph段落”的縮寫。
你可以像這樣創建一個段落:
```html
<p>I'm a p tag!</p>
```
# --instructions--
`h2` 元素下方添加一個 `p` 元素,其內容是 `Hello Paragraph`
**注意:** 按照慣例,所有 HTML 標籤都應該是小寫字母,例如應使用 `<p></p>`,而不會使用 `<P></P>`
# --hints--
應包含一個 `p` 元素。
```js
assert($('p').length > 0);
```
`p` 元素的內容文本應爲 `Hello Paragraph`
```js
assert.isTrue(/hello(\s)+paragraph/gi.test($('p').text()));
```
`p` 元素應有結束標籤。
```js
assert(
code.match(/<\/p>/g) &&
code.match(/<\/p>/g).length === code.match(/<p/g).length
);
```
# --seed--
## --seed-contents--
```html
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
```
# --solutions--
```html
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>
```