How to create a hyperlink in html
How to create a hyperlink in html
1 Answer
If you want to use a Hyperlink in html you have to use <a>
tag.
Example:
<a> I am a Hyperlink Code </a>
Output:
I am a Hyperlink Code
But, we want to direct it for a specific address so we have to use href
attribute.
Example:
<a href="https://www.qandeelacademy.com/"> I am another Hyperlink Code </a>
Output:
answer Link