<html>
<head>
<link id="myLink" rel="icon" href="demo_icon.html" type="image/gif" sizes="16x16">
</head>
<body>
<h2>Hello world!</h2>
<p>Click the "Try it" button to return the value of the sizes attribute of the link element.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myLink").sizes;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_link_sizes by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:46 GMT -->
</html>