<a> Anchor - (X)HTML webDev

LINK - Document Relationship

in HTML, the value of the src attribute of the <img? element is a URI reference, as is the value of the href attribute of the <a? or <link? elements.

HTML Ref <a>

attribute target=""> with <a>


  <!-- anchor used to define target destination within document -->
    <a name="jump">
    Jump target
  </a>
  <!-- anchor linking internally to previous target anchor -->
  <a href="#jump">Local jump within document</a>

<a> Anchor - (X)HTML webDev