Learn Scripting Languages from the Master!
To add a border around an image, simply use the border property, as shown below:
<img src="http://www.scriptingmaster.com/images/scripting-master-logo-small.jpg" width="200" height="33" border="5">
That will result in a border thickness of 5 (measured in pixels) around the image
By default, the border property of an image is 0 but if you make an image a link, then, it automatically has a border thickness of 1, as shown with the code below:
<a href="http://www.scriptingmaster.com"><img src="http://www.scriptingmaster.com/images/scripting-master-logo-small.jpg" width="200" height="33"></a>
That will result in:
If your image is a link and if you like to hide the border around the image, you can set the border to 0.