How to link local webpages on Android does anyone know?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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!

8th Jul 2020, 8:10 AM
Shaheer Ahmed
Shaheer Ahmed - avatar
1 Answer
+ 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)
8th Jul 2020, 4:33 PM
᮴Ridwan_
᮴Ridwan_ - avatar