- Link is used to create hyper link in web page.
- Hyper link is used to navigate from one page to another.
- Markdown provide easy way to add a link into the page.
Parts of link
- Link text
- Link URL
we must enclosed link text in square brackets [] and then add URL text into rounded brackets ()
Example 1
Yahoo Link : Click here to open Yahoo!
<a href="https://www.google.com">Click here to open Google !</a>
Title with Link
- We can also specify title with the link.
- The title works as description for the link.
- It’s an optional attribute.
- That title will display when user hover over the link.
- To add the title append it after URL enclosed within quotes
"".
Example 2
URLs and Email Addresses
-
The quick way to turn URL or email id into link, enclose in angle brackets
Example 3
Formatting in Link
- You can also emphasize the link by using asterisks
Example 4
This is document for Markdown : Markdown Guide
This is document for Markdown : Markdown Guide
Other Markdown Articles
- [List in Markdown](/blog/web-dev/markdown/list/ “List in Markdown”/)
- [Headings in Markdown](/blog/web-dev/markdown/headings/ “Headings in Markdown”/)
Hope you find this helpful!
Keep smiling 😄
Related Articles
Deepen your understanding with these curated continuations.
Horizontal Rules & Line Breaks in Markdown
Master horizontal rules and line breaks in Markdown. Learn how to separate sections with ---, ***, or ___ and when to use trailing spaces vs blank lines.
Images in Markdown - Complete Guide
Learn how to embed images in Markdown with alt text for accessibility and SEO. Covers inline syntax, local images, linked images, and reference-style syntax.
Mastering Blockquotes in Markdown - Complete Guide
Learn how to use blockquotes in Markdown for quotes, callouts, and notes. Covers basic syntax, nested blockquotes, multi-paragraph, and best practices.