Adding photos to your page.To display just the image as is:<img src="url_of_image"> To specify a width and height in pixels: <img src="url_of_image" height="55px" width="28px"> To post a picture as a link: <a href="url_of_link" target="_blank"><img src="url_of_image" alt="Click Here"></a> "alt" - when you hold your mouse over an image, a box with a description will pop up. The "alt" tag lets you define what the description will be.
|