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
#idin 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 likepages/about.html. - What does the
downloadattribute 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 likerect,circle, andpoly. - 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>