学习要求:是时候添加一个新部分了。 在现有 section 元素下方添加第二个 section 元素。
提示错误信息:第二个 section 元素不应嵌套在第一个 section 元素中。
请问,怎样解决这个问题。
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<!-- User Editable Region -->
<section>
<section>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>
</section>
<!-- User Editable Region -->
</main>
</body>
</html>
Your browser information:
用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
Challenge Information:
通过创建猫咪相册应用学习 HTML - 步骤 17