freeCodeCamp/curriculum/challenges/chinese/01-responsive-web-design/applied-accessibility/make-screen-reader-navigati...

2.7 KiB

id title challengeType videoUrl forumTopicId localeTitle
587d7787367417b2b2512aa1 Make Screen Reader Navigation Easier with the header Landmark 0 https://scrimba.com/c/cB76vtv 301023 使用 header 元素使屏幕阅读器更容易导航

Description

header也是一个具有语义化的、提升页面可访问性的 HTML5 标签。它可以为父级标签呈现简介信息或者导航链接,适用于那些在多个页面顶部重复出现的内容。 与main类似,header的语义化特性也可以使辅助技术快速定位到它的内容。 注意:
header用在 HTML 文档的body标签中。这点与包含页面标题、元信息的head标签不同。

Instructions

Camper Cat 正在写一些训练忍者的精彩文章,并为它们建立一个新的页面。请使用header替换页面顶端包含h1div标签。

Tests

tests:
  - text: '你的代码应该包含 1 个<code>header</code>标签。'
    testString: assert($('header').length == 1);
  - text: '你的<code>header</code>标签应该包含<code>h1</code>。'
    testString: assert($('header').children('h1').length == 1);
  - text: '你的代码不应有任何<code>div</code>标签。'
    testString: assert($('div').length == 0);
  - text: '确保你的<code>header</code>标签是闭合的。'
    testString: assert(code.match(/<\/header>/g) && code.match(/<\/header>/g).length === code.match(/<header>/g).length);

Challenge Seed

<body>

  <div>
    <h1>Training with Camper Cat</h1>
  </div>


  <main>
    <section id="stealth">
      <h2>Stealth &amp; Agility Training</h2>
      <article><h3>Climb foliage quickly using a minimum spanning tree approach</h3></article>
      <article><h3>No training is NP-complete without parkour</h3></article>
    </section>
    <section id="combat">
      <h2>Combat Training</h2>
      <article><h3>Dispatch multiple enemies with multithreaded tactics</h3></article>
      <article><h3>Goodbye world: 5 proven ways to knock out an opponent</h3></article>
    </section>
    <section id="weapons">
      <h2>Weapons Training</h2>
      <article><h3>Swords: the best tool to literally divide and conquer</h3></article>
      <article><h3>Breadth-first or depth-first in multi-weapon training?</h3></article>
    </section>
  </main>
</body>

Solution

// solution required