Re-sizing an image couldn't be simpler. Take the following example
Code:
<img src="image1.jpg" width="100" height="100" />
To resize the image to half it's original size you just declare the dimensions in terms of percentages
Code:
<img src="image1.jpg" width="50pc" height="50pc" />