<html>
<body>
<h1>The Anchor Object</h1>
<h2>The download Attribute</h2>
<p>An image with a download attribute will download if a user clicks on it:</p>
<a id="myAnchor" href="w3schools.jpg" download="w3logo">
<img src="w3schools.jpg" alt="W3Schools" width="104" height="142"></a>
<p>The value of the download attribute is:</p>
<p id="demo"></p>
<script>
let text = document.getElementById("myAnchor").download;
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>