0
votes

I want to store my webpages for offline use.. I know there is manifest/AppCache techniques to store the file in the browser for offline use.. Since its storage size is limited and will be expired, is there any alternative available other than app cache in HTML5?? Also tell me about the vulnerabilities and risks in using application cache of HTML5...

1

1 Answers

0
votes

What exactly do you mean by "storing offline webpages". Does this mean you want to be able to edit your files on an offline computer? Or that you want to save online webpages from random websites for offline use?

Or do you mean this: http://www.ibm.com/developerworks/library/wa-offlinehtml/.

Could you please clarify your question?

*EDIT*
On a webbrowser you can use: "Save Page As", which saves the webpage HTML, which you are able to open and look at. However this does not copy the CSS file.

Maybe another option is standing on a webpage, "right mouse" -> View Page Source, copy/paste that.
Or you can try Firebug, which does include some CSS (but you will have to copy/paste the code manually).

If my answers above are completely off the question, then perhaps you mean storing an HTML5 page locally at a user.
This can be done with cookies or the "LocalStorage" property in HTML5 (http://www.w3schools.com/html/html5_webstorage.asp). However on the last option, I don't know if it works for whole web pages.