I am trying to make a webserver with arduino uno but I am not sure how I can handle the png. .jpg requests.
If I have a tag in my html, I can manage this with a GET request like GET /img/backButton.png. But what if I have the following CSS code in an external file arduino.css. Someone knows how I need to handle this kind of .png requests when the picture is being requested from the css code like below??
What does the browser do when it gets that file? That is what you need to be prepared to deal with. Typically, it issues another GET request for the image file, in the same way that is makes a GET request for the style sheet referenced in the htm(l) file.