How To Display Multiple Html Pages Using Single Index.html
I have multiple html pages and i want to display them all using a index.html, but i don't want to use any link button or any thing. I want to display them after a time period. How
Solution 1:
You can use meta tag in every page header. and inside the meta tag you can put your redirect link and time.
<METAhttp-equiv="refresh"content="5;URL=http://www.stackoverflow.com/">
This is the time in second.
content="5;
Post a Comment for "How To Display Multiple Html Pages Using Single Index.html"