in reply to Re^2: photo does not display on HTML page in Linux
in thread photo does not display on HTML page in Linux
This has very little to do with Perl and is all about HTML and how your browser displays local resources.
Are you sure that your browser will interpret this address as an address that is supposed to be loaded from a file?
Personally, I would either add an address relative to the HTML file, like (assuming that the HTML file lives in /net/home2/ceb/bmcclint):
<IMG SRC="./data/brendan.jpg" WIDTH=850 HEIGHT=1000>
Alternatively, find out how your browser interprets file:// URIs, and give it the appropriate file:// URI. Maybe it is
<IMG SRC="file://net/home2/ceb/bmcclint/data/brendan.jpg" WIDTH=850 HE +IGHT=1000>
But again, none of this has anything to do with Perl, so most likely you will find better help in the documentation (or internet searches) for your browser.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: photo does not display on HTML page in Linux
by Anonymous Monk on Jun 01, 2017 at 16:38 UTC | |
| [reply] [d/l] |
by karlgoethebier (Abbot) on Jun 01, 2017 at 16:52 UTC | |
BTW, this validator shows 27 errors in your document. Regards, Karl «The Crux of the Biscuit is the Apostrophe» Furthermore I consider that Donald Trump must be impeached as soon as possible | [reply] |