Used to create an explicit link to another place in the same document or to another document. The current document is the source of the link and the value of the href attribute, defines the link target
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/2002/06/xhtml2">
<head>
<title>anchor</title>
</head>
<body>
<div>
<a href="http://www.antennasoftware.com" title="Antenna Software">click me!</a>
</div>
</body>
</html>