Computer Science, asked by chettrimeena761, 11 months ago

which tag is used to insert hyperlinks in a web page​

Answers

Answered by unatha4
4

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. Add the URL for the link in the <a href=” ”>.​

Explanation:

Answered by anne04042007
0

Explanation:

<!DOCTYPE html> <html>    <head>       <title>HTML Hyperlinks</title>    </head>    <body>       <h1>Company</h1>       <p>          We’re a <a href="/about/about_team.htm">team</a> of professionals working          hard to provide free learning content.       </p>    </body> </html>

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=” ”>.

Similar questions