Images
Things might seem a little bland and boring with all of this text formatting. Of course, the web is not just about text, it is multi-media and the most common form of media is the image.
img
tag is used to put an image in
an
HTML document and it
looks like this:
<img src="http://html4beginners.com/images/logo.gif" width="342" height="60" alt="HTML 4 Beginners Logo" />
The src
attribute tells the browser
where to find the image. Like
the a tag, this can
be absolute, as the above
example demonstrates, but is
usually relative. For example,
if you create your own image and
save it as "alienpie.jpg" in a
directory called "images" then
the code would be <img src="images/alienpie.jpg"...
The width
and height
attributes are necessary because
if they are excluded, the
browser will tend to calculate
the size as the image loads,
instead of when the page loads,
which means that the layout of
the document may jump around
while the page is loading.
The alt
attribute is the
alternative description.
This is used for people who
cannot or choose not to view
images. This is a
requirement in the
latest versions of HTML.
Note that, like the br
tag, because the img
tag does not have a closing tag,
it closes itself, ending with "/>"
The most commonly used file formats used for images are GIFs and JPEGs. They are both compressed formats, and have very different uses.
GIFs can have no more than 256 colors, but they maintain the colors of the original image. The lower the number of colors you have in the image, the lower the file size will be.
GIFS SHOULD BE USED FOR IMAGES WITH SOLID COLORS.
JPEGs on the other hand use a mathematical algorithm to compress the image and will distort the original slightly. The lower the compression, the higher the file size, but the clearer the image.
JPEGS SHOULD BE USED FOR IMAGES SUCH AS PHOTOGRAPHS.
Images are perhaps the largest files a new web designer will be handling. It is a common mistake to be oblivious to the file size of images, which can be extremely large. Web pages should download as quickly as possible, and if you keep in mind that most people still use modems that download at less than 7Kb a second (realistically it is less than 5Kb), you can see how a large file will greatly slow down the download time of a full page.
You need to strike a balance between image quality and image size. Most modern image manipulation programs allow you to compress images and the best way to figure out what is best suited for yourself is trial and error.
Related Pages
Next: Tables
- How to use tabular data.
Previous: Links -
How to link things together.