2018-10-10 18:03:03 -04:00
---
id: bad87fee1348bd9aecf08801
2020-12-16 00:37:30 -07:00
title: HTML5 元素介绍
2018-10-10 18:03:03 -04:00
challengeType: 0
2019-12-26 20:05:59 +08:00
videoUrl: 'https://scrimba.com/p/pVMPUv/cBkZGpt7'
forumTopicId: 301097
2021-01-13 03:31:00 +01:00
dashedName: introduction-to-html5-elements
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2021-01-08 11:20:48 -08:00
HTML5 引入了很多更具描述性的 HTML 元素,例如:`header` 、`footer` 、`nav` 、`video` 、`article` 、`section` 等等。
2020-12-16 00:37:30 -07:00
2019-12-26 20:05:59 +08:00
这些元素让 HTML 更易读,同时有助于搜索引擎优化和无障碍访问。
2020-12-16 00:37:30 -07:00
2021-01-08 11:20:48 -08:00
`main` 元素让搜索引擎和开发者能很快地找到网页的主要内容。
2020-12-16 00:37:30 -07:00
2021-01-08 11:20:48 -08:00
举个例子,下面的 `main` 元素嵌套了两个子元素:
2019-12-26 20:05:59 +08:00
```html
< main >
< h1 > Hello World< / h1 >
< p > Hello Paragraph< / p >
< / main >
```
2021-01-08 11:20:48 -08:00
**提示:**在后面的应用无障碍课程中我们会接触到更多新的 HTML5 元素,以及明白它们的用处。
2020-12-16 00:37:30 -07:00
# --instructions--
2021-01-08 11:20:48 -08:00
请在现有的段落之后创建一个新的段落,段落内容为:`Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.`
2020-12-16 00:37:30 -07:00
2021-01-08 11:20:48 -08:00
然后,请添加一个 `main` 元素,作为现有的两个 `p` 元素的父级元素。
2020-12-16 00:37:30 -07:00
# --hints--
2021-01-08 11:20:48 -08:00
页面中应该有两个 `p` 元素。
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert($('p').length > 1);
2018-10-10 18:03:03 -04:00
```
2021-01-08 11:20:48 -08:00
每个 `p` 元素都应有结束标签。
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert(
code.match(/< \/p > /g) &&
code.match(/< \/p > /g).length === code.match(/< p / g ). length
);
```
2018-10-10 18:03:03 -04:00
2021-01-08 11:20:48 -08:00
新建的段落应包含关键词 `Purr jump eat` 。
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert.isTrue(/Purr\s+jump\s+eat/gi.test($('p').text()));
```
2021-01-08 11:20:48 -08:00
应该存在 `main` 元素。
2020-12-16 00:37:30 -07:00
```js
assert($('main').length === 1);
```
2021-01-08 11:20:48 -08:00
`main` 元素应有两个 `p` 元素作为它的子元素。
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert($('main').children('p').length === 2);
2018-10-10 18:03:03 -04:00
```
2021-01-08 11:20:48 -08:00
`main` 的开始标签应位于第一个段落之前。
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert(code.match(/< main > \s*?< p > /g));
```
2018-10-10 18:03:03 -04:00
2021-01-08 11:20:48 -08:00
`main` 的结束标签应位于第二个段落之后。
2020-12-16 00:37:30 -07:00
```js
assert(code.match(/< \/p > \s*?< \/main > /g));
```
2018-10-10 18:03:03 -04:00
2021-01-13 03:31:00 +01:00
# --seed--
## --seed-contents--
```html
< h2 > CatPhotoApp< / h2 >
< p > Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.< / p >
```
2020-12-16 00:37:30 -07:00
# --solutions--
2018-10-10 18:03:03 -04:00
2021-01-13 03:31:00 +01:00
```html
< h2 > CatPhotoApp< / h2 >
< main >
< p > Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.< / p >
< p > Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.< / p >
< / main >
```