HTML layout - background image

Hi! i tried adding background image and an icon to the index.html page. Now these images work fine till i view it on the laptop, but as soon as i switch to the android aplication the image doesn’t display.
I tried the following:
1.<body background="/img.jpg"
2.<body background=“img.jpg”
3.<head

</style 4.<head <style body{background-image:url("//serveFile?filename=img.png") </style And i also tried adding image via inline css code I have uploaded the image on the sd card both in jpg and png format and tried checking out both the formats. But the background image just won't display

Hi @kriti05 ,

Try this

<!DOCTYPE html>
<html>
   <head>
      <style>
         body {
         background-image: url("/serveFile?filename=img.png");
         }
      </style>
   </head>
   <body>
      Try this
   </body>
</html>