通过编写猫咪相册应用学习 HTML - 步骤 14

告诉我们发生了什么:
在此详细描述你的问题。

你目前的代码

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

<!-- User Editable Region -->

      <p>See more <a target : _blank 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.67

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

挑战的链接:

This is not quite how you assign a value to an attribute. Look at how you assigned a value for the href attribute:

href="https://freecatphotoapp.com"

Notice that you used an equal sign. You want to do the same thing for the target attribute.

赋值不是那么赋的,看看你的:

应该是加等号和用双引号引起来的值