Computer Science, asked by sapnakushwaha8423, 1 day ago

how are hyperlinks inserted in an html document ? what is the tag​

Answers

Answered by preetiamitshukla
2

Answer:

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.

Answered by Navika4
1

Answer:

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.

Explanation:

Use the <a> element to define a link.

Use the href attribute to define the link address.

Use the target attribute to define where to open the linked document.

Use the <img> element (inside <a> ) to use an image as a link.

Similar questions