大家好,欢迎来到freecodecamp HTML专题,今天是本专题第13篇文章。
今天的挑战还是还是关于a
标签,真的a
标签非常重要,使用的技巧也比较多。
你可以把其他的元素嵌套在a
标签当中,这样就可以实现点击其他内容跳转链接的效果。
比如说你可以把一张图片嵌套在a
标签当中,这样的话我们就可以实现图片的超链接。比如这样:
<a href="#"><img src="https://bit.ly/fcc-running-cats" alt="Three kittens running towards the camera."></a>
记住,如果你想要跳转到哑链接的话,需要将href
属性指向"#"。
将现在html代码中的图片元素嵌套在a
标签当中。
当你做完这项之后你可以试着将你的鼠标在图片上悬停,你的鼠标会从普通的指针变成一个手的形状也就是将要点击的形状。这就说明了现在这张图片已经变成了一个链接。
img
元素必须被嵌套进一个a
标签当中a
元素必须包含一个哑链接,即href
属性指向"#"a
标签都必须带有closing tag<h2>CatPhotoApp</h2><main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
<img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
这个挑战也很简单,我们只需要遵守题目的要求将img
标签外面嵌套一个a
标签即可。
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>