Hyperlinks and Anchors
Links are created using the <a>
tag. They allow users to navigate between pages or sections.
- Use the
href
attribute to define the URL - Can link to external sites or internal sections
target="_blank"
opens links in a new tab
<a href="https://example.com" target="_blank">Visit Example</a>