<html>
<body>
<img id="myImg" src="compman.gif" width="107" height="98">
<p>Click the button to change the height of the image to 300px.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myImg").height = "300";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_img_height2 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:13 GMT -->
</html>