Computer Science, asked by dd1978484, 5 hours ago


describe \: how \: will \: you \: link \: web \: pages \: in \: html5

Answers

Answered by anindyaadhikari13
5

Answer.

⊕ To link web pages in html, we can use anchor tag.

⊕ The <a> tag is used to define a hyperlink to any website, images, videos etc.

Syntax: <a href="URL"/> Text here. . . </a>

⊕ The most important and compulsory attribute of the anchor tag is - href. It indicates the link's destination.

⊕ The anchor tag is a container tag i.e., it has both opening and closing tag.

Example -

<a href="index.html"> Go to home page. </a>

Similar questions