Re size image
If you use Link back
RE-SIZE IMAGE
How to resize and image with out editing it on a photo program
The basic code to display an image is:
< img src="image.png" >
so to re-size you simply add width=100 and/or height=200 after the url
Example:
< img src="image.png" width=100 >
change the numbers to what fits best for you and that's it!