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

告诉我们发生了什么:

why the tips always said “You should have the words ‘See more’ before the anther element?”

到目前为止你的代码

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

<!-- User Editable Region -->

      <p>Everyone loves cute cats online!</p>  
      <p> See more <a href="https://freecatphotoapp.com">cat photos </a> in our gallery </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; rv:122.0) Gecko/20100101 Firefox/122.0

挑战信息:

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

It is caused by the space you have after the cat photos anchor text.

Also, you are not asked to create a p element. Make sure you do not have a cached version of the challenge. Clear your browser cache and do a hard refresh.


But the test really shouldn’t give such an unrelated hint because of that space.

1 Like

thank you for you help