0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>Use what you’ve learned in the chapter about<a>links and images</a>to add links to the page.</p>
1
<p>Use what you’ve learned in the chapter about<a>links and images</a>to add links to the page.</p>
2
<p>Based on the link text, figure out what the link’s address should be. Here are some possible addresses: #section, resources/guide.pdf, https://example.com, /local-page.html.</p>
2
<p>Based on the link text, figure out what the link’s address should be. Here are some possible addresses: #section, resources/guide.pdf, https://example.com, /local-page.html.</p>
3
<p>Some links should include the download attribute.</p>
3
<p>Some links should include the download attribute.</p>
4
<p>This is an additional challenge for reinforcing your skills with links.</p>
4
<p>This is an additional challenge for reinforcing your skills with links.</p>
5
<p><strong>Solution</strong></p>
5
<p><strong>Solution</strong></p>
6
<p>The solution to the challenge will be available in a few minutes. Use it if you encounter difficulties. In the meantime, try to complete the challenge on your own.</p>
6
<p>The solution to the challenge will be available in a few minutes. Use it if you encounter difficulties. In the meantime, try to complete the challenge on your own.</p>
7
<!DOCTYPE html> <html lang="en"> <head> <title>Links</title> <link rel="stylesheet" href="links-challenge-setting.css"> <link rel="stylesheet" href="style.css"> </head> <body> <p class="link-card"><a href="/local-page.html">Go to Local Page</a></p> <p class="link-card"><a href="#section">Scroll Down</a></p> </body> </html>
7
<!DOCTYPE html> <html lang="en"> <head> <title>Links</title> <link rel="stylesheet" href="links-challenge-setting.css"> <link rel="stylesheet" href="style.css"> </head> <body> <p class="link-card"><a href="/local-page.html">Go to Local Page</a></p> <p class="link-card"><a href="#section">Scroll Down</a></p> </body> </html>