Edit This Code:
<!DOCTYPE html>
<html>
<body>

<img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>

<p>
  <a href="../html/default.asp.html">HTML</a><br>
  <a href="../css/default.asp.html">CSS</a>
</p>

<p>Click the button to display the URL of each link in the document.</p>

<button type="button" onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var x = document.links;
    var txt = "";
    var i;
    for (i = 0; i < x.length; i++) {
        txt = txt +  x[i].href + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy