Please explain FALLBACK section in .appcache file. What should the file offline.html contain. What is the difference between CACHE SECTION and FALLBACK SECTION. I am able to understand that Cache section may contain css and js files, but what is the use of fallback section.
When i give something like the following in my demo.appcache
CACHE:
style.css
script.js
NETWORK:
*
FALLBACK:
Does this mean that excluding style.css and script.js all other files need a network connection?
Please explain