html - Image not displaying in browser -
my image not displaying in browser , yet seem specify correct url. might problem? here image tag: <img src="c:/wamp/www/simple/images/greener.png" alt="grass" width="400" height="400" />
displays alternative text "grass". wrong? please.
that's link file. should instead point http://localhost...
or use file:///
protocol.
http://localhost/simple/images/greener.png
(note, i'm guessing c:/wamp/www/
webroot.)
or:
file:///c:/wamp/www/simple/images/greener.png
note, both of these work if accessing local file using local server or local file using local file. if want others it, need use valid domain name available on network or internet @ large.
Comments
Post a Comment