Reputation: 3
I use thymeleaf template engine and place the files like that. but images do not display on Web page. how can i fix it? place files like this result
<span class="Google">
<a href="">
<img src="img/google.png">
</a>
</span>
<span class="kakao">
<a href="">
<img src="img/kakao.png">
</a>
</span>
Upvotes: 0
Views: 1297
Reputation: 101
put / at the start of url and make sure .png should be present at /resource/static/img/ directory
try this
<span class="kakao">
<a href="">
<img src="/img/kakao.png">
</a>
</span>
Upvotes: 1