How to create a link? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

How to create a link?

5th Nov 2020, 2:39 PM
Prio Das
Prio Das - avatar
4 Réponses
+ 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=” ”>
5th Nov 2020, 2:42 PM
Matthew
Matthew - avatar
+ 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>
6th Nov 2020, 7:35 PM
Minhazur Rahaman Ratul
Minhazur Rahaman Ratul - avatar
0
<a href="http://codingcop.com">LinkLabel</a>
5th Nov 2020, 2:42 PM
CodingCop
CodingCop - avatar
0
Thanks ❤
5th Nov 2020, 2:43 PM
Prio Das
Prio Das - avatar