Markdown: Hyperlinks

Markdown: Hyperlinks

To create a hyperlink, enclose the link text in brackets and then URL/web site address in parentheses immediately following.


Example: External/Absolute Hyperlinks


	[Google](https://www.google.com/)
	

The markdown code above is equivalent to the HTML code below.


	<p><a href="https://www.google.com/">Google</a></p>
	

Example: Internal/Relative Hyperlinks (Sub-Folder)


	[Customer Addresses](customers/addresses.html)
	

The markdown code above is equivalent to the HTML code below.


	<p><a href="customers/addresses.html">Customer Addresses</a></p>