Basics

HTML

Java

Colors

Frames

Tables

Fonts

Graphics

Links

Contact

how do i add spaces between my images?

 

You can add vertical and horizontal spaces to your images using a tag called vspace or hspace. Vspace is the vertical space tag (space above and below) and hspace is the horizontal space tag (space from side to side). Add the space tag to your img src tag like this:

<img src="akao.gif" hspace="15">

Using the above tag will give you a space between 2 images of 15 pixels. You can add the vspace and the hspace tags together to create space above, below, and beside your images.


Hspace = 15:


<img src="akao.gif" hspace="8" vspace="8">

Vspace = 8, Hspace = 8: