0
How to link local webpages on Android does anyone know??
I want to know how because this is essential process for basic website making!
1 Odpowiedź
+ 4
About URI
https://en.m.wikipedia.org/wiki/Uniform_Resource_Identifier
Let's say you have create about.html in 'test' directory
So, your about.html URI will look like this (in your own phone)
file:///storage/emulated/0/test/about.html
And you want link to about.html , your a tag will like this
<a href='file:///storage/emulated/0/test/a.html'>text</a>
Or if from same directory (file:///storage/emulated/0/test/), you can directly link like this
<a href='a.html'>text</a>
And this is only work in your own phone! (No server)