how can we link web pages in HTML
Answers
Answered by
14
Answer:
To make page links 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 link starts and the </a> tag indicates where it ends. Whatever text gets added inside these tags, will work as a link. Add the URL for the link in the <a href=” ”>.
Answered by
1
Answer:
through anchor tag and using href
Explanation:
like -
< a href"www.google.com> click here to open google </a>
Similar questions