Right! Now for the fun stuff...
Adding graphics couldnīt be simpler. There are only two things you need to do.
- Insert the correct tag
- Know the location of the graphic you wish to display.
The tag is easy. It looks like this: <img src = "...."> (This is short for "the image source is...")
Next thing is to tell the tag WHERE the image is to be found. Like this: <img src = "/icons/graphics.gif"> (This tells the tag that the graphic it must display is called "graphics.gif", and it can be found in the "icons" subdirectory.
Probably the easiest way to get it right is to place any graphic you wish to display in the same directory as the HTML file. This way, you donīt need to specify a PATH to the graphic. Just call it by name. Like this: <img src = "graphics.gif"> |