Hyperlink
A cryptographic key that can be shared with anyone to receive encrypted data or identify a sender's digital signature.
Components: Source (Anchor text), Destination (URL/ID), Protocol (HTTP/HTTPS/mailto). Issues: Link rot, Clickjacking (malicious overlay).
graph LR
Center["Hyperlink"]:::main
Pre_cryptography["cryptography"]:::pre --> Center
click Pre_cryptography "/terms/cryptography"
Pre_asymmetric_encryption["asymmetric-encryption"]:::pre --> Center
click Pre_asymmetric_encryption "/terms/asymmetric-encryption"
Pre_hashing["hashing"]:::pre --> Center
click Pre_hashing "/terms/hashing"
Rel_private_key["private-key"]:::related -.-> Center
click Rel_private_key "/terms/private-key"
Rel_wallet_address["wallet-address"]:::related -.-> Center
click Rel_wallet_address "/terms/wallet-address"
Rel_digital_signature["digital-signature"]:::related -.-> Center
click Rel_digital_signature "/terms/digital-signature"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 Explain Like I'm 5
Imagine a giant library where the books can talk to each other. In the middle of a story, a book might say 'If you want to see what happened next, just touch this word'. When you touch it, you are instantly teleported to the exact page in the next book. That's a hyperlink.
🤓 Expert Deep Dive
Technically, a hyperlink is implemented in HTML using the (anchor) tag with an href attribute. Hyperlinks define the 'Graph' of the internet. Search engines like Google use these links to 'crawl' the web and determine the importance of pages (PageRank). There are several types: 'Internal Links' (pointing to the same domain), 'External Links', and 'Anchor Links' (pointing to a specific ID on the same page). Modern developments include 'Deep Linking' in mobile apps, which allows a link to open a specific screen inside an app instead of just a website.