❓ Help & Resources

Task 2 — resources/help.html

HTML Help & Learning Resources 📚

This page contains helpful links and tips for learning HTML. These are the resources I used while working on this assessment. Bookmark this page if you're also learning HTML!

❓ Frequently Asked Questions

What is an anchor link?
An anchor link uses a #id in the URL to jump to a specific part of the same page. Example: <a href="#section1">Go to Section 1</a>
What is a relative link?
A relative link points to another file within the same project. It does not include http:// — just the file path like pages/about.html.
What does the download attribute do?
It tells the browser to download the linked file instead of opening it. Example: <a href="file.pdf" download>Download PDF</a>
What is an image map?
An image map makes different parts of one image clickable. You use the <map> and <area> tags to define clickable regions with shapes like rect, circle, and poly.
How do I write an email link?
Use mailto: followed by the email address. Example: <a href="mailto:you@email.com?subject=Hi">Email Me</a>

🔗 Useful Learning Links

← Go Back to Navigation Page