Respuesta :

Answer =anchor
The html anchor tag enables web designers to link html documents to each other.

Answer:

anchor tag (<a>)

Explanation:

The anchor HTML tag enables hyperlinking of documents in the web. The generic format is as follows:

<a href='www.abc.com'> Text </a>

In this segment, Text is rendered as underlined on the browser, and when the user clicks on Text, he is taken to the page www.abc.com which is defined using href attribute. The same anchor tag can be used for hyperlinked images as well.

ACCESS MORE