
Links
Gateways to New Worlds
Links are the silent architects of the internet — unassuming, yet indispensable. A simple <a> element may seem harmless, but it’s the digital gateway that propels us from one page to another, like wandering through an endless library without ever having to turn a page.
But links can do more than just connect websites. Without links, the internet would be nothing more than a scattered collection of lonely pages, lost in the vast digital void. But with them, it becomes a vast, interconnected web of knowledge, stories, and possibilities — and you hold the key.
Links in HTML
From Websites to Emails — How to Connect Content Cleverly and Interactively!

Internal Link
Secrets of the Inner Paths
An internal link is like a mysterious path winding through your own kingdom. It guides you from one page to another without ever leaving the realm. Using a relative path in HTML, you simply point to where it should lead, without revealing the entire URL. For example, you can link to the file about.html at the same level, gracefully escorting your visitor through your domain.
<a href="about.html">About us</a>

External Link
Guides to Distant Worlds
An external link is like a portal to uncharted realms. Using an absolute path in HTML, you open the gate to an unfamiliar resource, and with the magical spell target=”_blank”, this portal opens in a new window or tab. This way, your own world remains undisturbed while your visitor embarks on their journey.
<a href="https://www.eldoria.com" target="_blank">Eldorias Home</a>

Email Link
Messages on Enchanted Paths
An email link is like a magical messenger who knows the direct route to your inbox. With the mailto: spell inside the <a> tag, the user’s email client opens instantly, ready to send a message your way. One click, and the connection is forged—communication doesn’t get any simpler or more magical than this!
<a href="mailto:mail@text-magic.com">Contact us</a>

Phone Link
The Magic of a Call
A phone link is like a talking mirror that instantly connects you to the other side. With the tel: spell in the <a> tag, the device’s phone app opens seamlessly. One click, and the number is dialed. Communication on mobile devices couldn’t be more effortless—or magical!
<a href="tel:12345678">Phone: 123 456 78</a>

Anchor Link
A Leap Through Magical Portals
Anchor links are like hidden gateways that teleport you instantly to a specific spot on your page. Using the <a> element with an href that starts with #, you can guide the reader straight to any desired section. Just specify the ID of the target area, and voilà—the magical leap is complete. These clever waypoints make navigation a breeze, saving you from endless scrolling—like flipping through a spellbook with a touch of enchantment!
<a href="#ankername">To section...</a>

The Download Link
Effortlessly View and Download Media
The <a> tag isn’t just for linking to images, videos, or documents—it can also offer them directly for download. The download attribute is the secret key. It lets users download files with a single click, and you can even set the filename they’ll receive. A touch of magic for hassle-free sharing!
<a href="media/test.pdf" download>Download PDF</a>