I wrote a .html file that uses css(style.css) and javascript(app.js). When I transferred the folder containing the index.html,style.css and app.js over to my android internal memory,the browser runs the html file but my .css and .js files are not detected.
<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<link href="style.css" rel="stylesheet" >
</head>
<body>
....
</body>
<script src="app.js" charset="utf-8"></script>
I have tried using "/style.css" and "./style.css". But none of them are helping in detecting the files.
Inline styles in the index.html file work fine and show up in my browser.
Using Chrome on Android 8.1.0 (MIUI 10.1|Stable)