A hyperlink is a reference to a document (or a section) that can be followed for retrieval using a navigation system that allows selecting emphasized content within an originating document. Hyperlinks are typically referred to as simply "links".
In HTML documents, a hyperlink referred to as an "anchor tag" and is followed by selecting it (usually with a mouse for a desktop computer, or tapping it with touch-screen displays).
Markup for embedding hyperlinks in documents can vary dramatically.
In HTML documents, a codified hyperlink resembles:
<a href="http://www.w3.org">W3C Homepage</a>
Using Markdown, a codified hyperlink is simplified to:
[W3C Homepage](http://www.w3.org)
In LaTeX documents, a codified hyperlink resembles:
\href{http://www.w3.org}{W3C Homepage}
Using StackOverflow, hyperlinks are codified using two separate lines of code:
[hyperlink][1]
[1]: http://en.wikipedia.org/wiki/Hyperlink
