in reply to Embedded GIFs not embedded

There's no such thing as 'embedding' a gif within a webpage.
You have to set the image href to a URL. - This may be a 'real' gif file, or a program which prints out the binary data.
example
<html> <body> <img href="/cgi-bin/photo.cgi?id=1"><br> <img href="/cgi-bin/photo.cgi?id=2"> </body> </html>

Replies are listed 'Best First'.
Re: Re: Embedded GIFs not embedded
by Anonymous Monk on Feb 23, 2004 at 14:56 UTC
      When I last noticed those, and experimented with them, I found they worked on some browsers, and not others, and especially not my favorite browser at the time (although I've switched favorites around that time, so I can't tell you which it was).

      So, I'd be wary of suggesting such a solution, which also doesn't have a graceful fallback if it isn't supported.

      -- Randal L. Schwartz, Perl hacker
      Be sure to read my standard disclaimer if this is a reply.

        So, I'd be wary of suggesting such a solution, which also doesn't have a graceful fallback if it isn't supported.

        Who suggested a solution? Pointing out that it's possible is not an endorsement or a suggestion.