I have got an HTML file to show an image but the box size is small. How can I change the size of the box?
<html>
<head>
<style>
</style>
<script text="text/javascript">
function load()
{
document.getElementById("customerAssetImage").src = imageUrl;
}
</script>
</head>
<body onload="load()" style="word-wrap: break-word;">
<img src="nothing.jpg" id="customerAssetImage" name="customerAssetImage" height="402" width="402"/>
</body>
</html>
Is there a way I can change the size of this box?
Any help is much appreciated.
*This post is locked for comments
I have the same question (0)