Interactive online courses HTML Academy
2026-03-09 12:25 Diff

Use what you’ve learned in the chapter about links and images to add links to the page.

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.

Some links should include the download attribute.

This is an additional challenge for reinforcing your skills with links.

Solution

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.

<!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>