通过创建猫咪相册应用学习 HTML - 步骤 12

告诉我们发生了什么:

在此详细描述你的问题。
(p标签包含a标签,链接文本怎么弄)

你目前的代码

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>

<!-- User Editable Region -->

      <!-- TODO: Add link to cat photos -->
     <p>cat photos<a href="https://freecatphotoapp.com"></p>

<!-- 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/118.0.0.0 Safari/537.36 Edg/118.0.2088.76

Challenge Information:

通过创建猫咪相册应用学习 HTML - 步骤 12

题目要求给这个句子中的 “cat photos” 加上 <a></a> 标签:

<p>See more cat photos in our gallery.</p>

你把句子改了,并且你写 <a></a> 标签的格式不对。

您好标签是写在p标签的里面还是单独写一行