dowload image code example
Example 1: html image position
<img src="image.jpg" style="top:---%; left:---%">
<!-- if you put "top" to an higher %, the image will be
more down. exemple :-->
<img src="romuald.png" style="top:03%; left:80%">
<!-- my image will be up and in the right corner -->
Example 2: javascript resize image
const img = document.querySelector('img');
img.width = 128;
img.height = 128;
img.style.width = '10em';
img.style.height = '10em';
const range = document.querySelector('input[type=range]');
range.addEventListener('mousemove', evt => {
img.style.width = evt.target.value + '%';
});