通过编写猫咪相册应用学习 html - 步骤 16

告诉我们发生了什么:
在此详细描述你的问题。
不知道是哪里出了问题,我注释了h2也加了section标签了,因为发帖只能放两个链接我这边删掉了一个cat photos
你目前的代码

CatPhotoApp

    <p>Click here to view more .</p>
  <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
  </section>
</main>
<html>
  <body>

    <main>
      <h1>CatPhotoApp</h1>
      <!-- <h2>Cat Photos</h2> -->
      <!-- TODO: Add link to cat photos -->
      <section>
        <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
      </section>
    </main>

  </body>
</html>

你的浏览器信息:

用户代理是: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

挑战: 通过编写猫咪相册应用学习 HTML - 步骤 16

挑战的链接:

为什么你的 <h2>Cat Photos</h2> 是被注释掉的呢?

题目要求把 h2 元素、注释、p 元素、锚点 a 元素放在 section 元素里,你现在是把 h2 注释了,把 p 元素、a 元素放在 section 里的。

题目要求中的注释是指这个 <!-- TODO: Add link to cat photos -->