HTML Image not displaying, while the src url works

前端 未结 8 856
死守一世寂寞
死守一世寂寞 2021-02-04 02:59
\"Image

That doesn\'t d

相关标签:
8条回答
  • 2021-02-04 03:37

    Your file needs to be located inside your www directory. For example, if you're using wamp server on Windows, j3evn.jpg should be located,

    C:/wamp/www/img/j3evn.jpg
    

    and you can access it in html via

    <img class="sealImage" alt="Image of Seal" src="../img/j3evn.jpg">
    

    Look for the www, public_html, or html folder belonging to your web server. Place all your files and resources inside that folder.

    Hope this helps!

    0 讨论(0)
  • 2021-02-04 03:40

    change the name of the image folder to img and then use the HTML code

    0 讨论(0)
提交回复
热议问题