- 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.
Markdown List Guide: Ordered and Unordered Lists
Master Markdown lists with this easy guide. Learn how to create ordered and unordered lists, nested items, and best practices for clean, readable documents.
Markdown Emphasis Guide: Bold, Italic, and Strikethrough
Learn how to apply text formatting in Markdown using bold, italic, and strikethrough styles. Improve your document's readability with simple syntax rules.
How to Use Headings in Markdown: A Complete Guide
Master Markdown headings to organize your content effectively. Learn how to use different levels of hashtags to improve readability, accessibility, and SEO.