+ 1
How to create a link?
4 Answers
+ 6
To make a hyperlink in an HTML page, use the <a> and </a> tags, which are the tags used to define the links. The <a> tag indicates where the hyperlink starts and the </a> tag indicates where it ends. Whatever text gets added inside these tags, will work as a hyperlink. Add the URL for the link in the <a href=â â>
+ 6
use a the a element and use href attribute for including ing the link.and use target attribute and give a value blank to open the link in a new tab.It is written on that way.
<a href="link" target="blank">Hello</a>
0
<a href="http://codingcop.com">LinkLabel</a>
0
Thanks â€