Displaying image in spring boot from system directory

Clash Royale CLAN TAG#URR8PPPDisplaying image in spring boot from system directory
I am working with spring boot I want to display image from my system directory in html page but i cannot do that.
Any can help me please.
This is my html code
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<img alt="no image" src="D:imagesfav-icon">
</body>
I tried the following code also but it is not working
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<img alt="no data" th:src="@{D:images1r-product-6.jpg}">
</body>
</html>
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.