Re: HTML Syntax Question

Jim Tittsler <[email protected]> Mon, 6 Jun 2011 22:08:37 +1200
Newsgroups gmane.org.user-groups.linux.hawkes-bay
Message-ID <[email protected]>
On Mon, Jun 6, 2011 at 18:52, Perry Spiller <[email protected]> wrote:
> <img src="G:/PerryE/Images/Perry/Harvard Five F Schol Pic.jpg" width="75%"
> alt="Flying School Five" />
> Are spaces in filenames valid?

Replace the spaces with their hex representation, '%20':
<img src="G:/PerryE/Images/Perry/Harvard%20Five%20F%20Schol%20Pic.jpg"
width="75%"
 alt="Flying School Five" />

(Or just avoid using spaces in the path names to begin with. :-)

I would have expected you to need the file:// protocol as in
src="file:///G:/PerryE/Images..." but I don't have a Windows machine
handy to check.