* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2.4 KiB
2.4 KiB
id, title, challengeType, videoUrl, forumTopicId, dashedName
id | title | challengeType | videoUrl | forumTopicId | dashedName |
---|---|---|---|---|---|
bad87fee1348bd9aecf08801 | HTML5 元素介绍 | 0 | https://scrimba.com/p/pVMPUv/cBkZGpt7 | 301097 | introduction-to-html5-elements |
--description--
HTML5 引入了很多更具描述性的 HTML 元素,例如:header
、footer
、nav
、video
、article
、section
等等。
这些元素让 HTML 更易读,同时有助于搜索引擎优化和无障碍访问。
main
元素让搜索引擎和开发者能很快地找到网页的主要内容。
举个例子,下面的 main
元素嵌套了两个子元素:
<main>
<h1>Hello World</h1>
<p>Hello Paragraph</p>
</main>
**提示:**在后面的应用无障碍课程中我们会接触到更多新的 HTML5 元素,以及明白它们的用处。
--instructions--
请在现有的段落之后创建一个新的段落,段落内容为:Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
然后,请添加一个 main
元素,作为现有的两个 p
元素的父级元素。
--hints--
页面中应该有两个 p
元素。
assert($('p').length > 1);
每个 p
元素都应有结束标签。
assert(
code.match(/<\/p>/g) &&
code.match(/<\/p>/g).length === code.match(/<p/g).length
);
新建的段落应包含关键词 Purr jump eat
。
assert.isTrue(/Purr\s+jump\s+eat/gi.test($('p').text()));
应该存在 main
元素。
assert($('main').length === 1);
main
元素应有两个 p
元素作为它的子元素。
assert($('main').children('p').length === 2);
main
的开始标签应位于第一个段落之前。
assert(code.match(/<main>\s*?<p>/g));
main
的结束标签应位于第二个段落之后。
assert(code.match(/<\/p>\s*?<\/main>/g));
--seed--
--seed-contents--
<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>
--solutions--
<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>