英文:
GITHUB pages noe showing images on my project
问题
我在我的Github项目中添加了一个项目网站。但是所有的照片在网站中都没有显示。
我使用的代码是:
<img src="/images/image-daniel.jpg" alt="">
我之前看到一些解决方案并更新了我的代码为:
<img src="images/image-daniel.jpg" alt="">
但是当我检查元素时,它仍然显示以下代码:
<img src="/images/image-daniel.jpg" alt="">
英文:
I added a project site to my Github project. But all the photos are not displaying in the site.
The Code I used is
<img src="/images/image-daniel.jpg" alt="">
I saw some solutions before and updated my code to
<img src="images/image-daniel.jpg" alt="">
But when I go to the inspect It still shows the code
<img src="/images/image-daniel.jpg" alt="">
答案1
得分: 0
删除整个项目从Github并将src属性更新为<img src="images/image-daniel.jpg"
,然后再次上传项目。
英文:
Remove the entire Project from Github and update the src attribute to <img src="images/image-daniel.jpg"
and upload the Project again .
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论