Services > Web Services > Web Authoring > Web Images

Web Images

| icons | images | logos |

When you use inline images in your web pages, remember to include width, height and alt attributes within the image tag. The height and width will allow browsers to preload the page text without waiting for the images to load.

If your pages are on the WHOI server

To use an image from this catalog in your web pages, add a link to the image file on the WHOI server using a relative link to the image:

<img src="/images/whoilogo.gif" height=66 width=72 alt="WHOI logo">

This example will insert the WHOI logo on your page.

If your pages are on your own Web server

To use an image on your own server, either make a copy of the file on your server or add a link to the image file on the WHOI server using the full URL for the image:

<img src="http://www.whoi.edu/images/whoilogo.gif" height=66 width=72 alt="WHOI logo">

This example will insert the WHOI logo on your page.