What is manifest in HTML5 ? and how to use it? [closed] - html

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want the page visible to the user even when the net connection breaks so is there a way to
store the page for atleast some time.

Describing the cache manifest in an SO answer will take a lot of space. Instead of doing that, I'm going to save everyone some time and post a tutorial for you: http://www.html5rocks.com/en/tutorials/appcache/beginner/
StackOverflow is better suited if you have trouble understanding a specific part of cache manifests.

Related

Problems adding chatvoice in html [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I've been working on a website for about 5 months and i have been testing a lot of features like
posts, downvotes and upvotes, etc
One the features was chatvoice
The problem is that i haven't found any relevant information about making chatvoice a thing in an html website
I believe you asking how to convert speech to text (Speech recognition). You can use python Library for performing speech recognition, with support for several engines and APIs, online and offline.
Please find this link for installation.

Skip browser cache when site loads [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
The problem is that my browser shows me an older version of my website so I had to clear my browser cache.
What can I implement something in my website to prevent this issue?
Add some numeric characters with a ? at the end of your file name. The browser will ignore it but it will not loading from the cache.
Something like: index.html to index.html?version=23421412423.
You can use a random number generator to do so.

Website Testing [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Say I have a website called www.website.com, which is online and hosted.
I am currently working on a other website(lets call it wwww.website2.com) and would like to send it to someone so he can have a look at it.
The way how I want to do this, is basically create the following link:
www.website.com/website2 - From which he will be able to view the content of www.website2.com
I am not to sure how I can do that.
Would appreciate your help a lot.
Thanks! :)
You can just add a folder to www.website.com called "website2". Then go to: www.website.com/website2 and (when there is an index.html (or index.php) in that folder, it'll show you that website.

How to detect advertisement link? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to detect the links in page which are used for advertisement. Or is there any statistical data by which I can guess this link is for advertisement?
I know this isn't a concrete answer, but if I were doing the same, I'd take a look at AdBlock and other add-ons in browsers such as Firefox since they do much the same. There are quite a few open source add-ons out there where you can view the code that does this. And even most email programs detect junk mail (and ads) using Bayesian filters which I'm sure with a bit of tweaking would work well.

How do free webhosters enforce ads? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
How do those webhosting companies enforce ads on your page?
I'd love to enforce a specific piece of html code on a webserver.
So, how do they?
They might use append and prepend depending on the exact solution you are referring to.
You basically use it to call another file (html, php etc) which is appended or prepended on the page (At the top or botton).
I did it once years ago and it worked.
Maybe stick the adsense code in the appended/prepended file.
See: http://www.maheshchari.com/php-auto-append-prepend-file-using-htaccess/
James