There is an easy way to do it in HTML...
If you want a fixed width or a fixed height:
- Fixed height (the width will be adjusted automatically keeping the ratio of the picture)
<img src="07cat.jpg" height="96" />
- Fixed width (the height will be adjusted automatically keeping the ratio of the picture)
<img src="07cat.jpg" width="96" />
I hope this will help too...