So I'm quite new to this but I think this should be possible to solve.
I use a Raspberry Pi 3 and Node.js to create a website to control the GPIO's. I wrote the website with HTML.
Now I want an image as background behind the switches on the website. If I link an images via url (for example a picture from google) it's no problem.
But if I link a picture that is on the Pi, it won`t show on the Website. It shows the name of the file but doesn't display it. I put the image in the same folder as the html file.
here is the html code that i have made:
<html>
<head>
<body>
<h1>Control LED light</h1>
<img src="Winkraftanlage.png" alt="Windkraftanlage">
</body>
</head>
<body>
<input id="light" type="checkbox">LED
</body>
```</html>
Thanks a lot in advance.