tags:

views:

34

answers:

1

I want to put an image with relative path to local file.

Firefox doesn't seem to accept something like

<img src=images/test.gif>

What's the syntax ?

+2  A: 

Try:

<img src="./images/test.gif" />

but have you checked that the image exists at that location?

ChrisF