a
I. Description
The HTML anchor element is the element resposible for creating hyperlinks between HTML documents. anchor elements are typically rendered by web browsers in a blue font, and underlined.
II. Examples
<!DOCTYPE html>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<h1>Example HTML Page</h1>
<p>Below are some links to search engines.</p>
<a href="https://www.google.com/">Google</a>
<a href="https://www.bing.com/">Bing</a>
<a href="https://www.duckduckgo.com/">DuckDuckGo</a>
</body>
</html>