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

告诉我们发生了什么:
在此详细描述你的问题。
只是提示
在嵌套了锚点元素(a )之后,浏览器中显示的 p 元素应该仅为 See more cat photos in our gallery. 。再次检查 p 和嵌套其中的锚点元素的文本、间距或标点。
到底哪里出了问题
你目前的代码

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more cat photos in our gallery.<a target="_blank"href="https://freecatphotoapp.com">cat photos</a>.</p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.70

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

挑战的链接:

You added another cat photos to the end of the p element and made that the link. Instead, you want to turn the existing cat photos into a link.

应该把题目中已有的 cat photos 变成链接,而不是新增一个 cat photos