How to detect advertisement link? [closed] - html

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.

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.

Styling of remembered user name drop down box [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 8 years ago.
Improve this question
Most (maybe all) browsers show a drop down list of previously used user names when logging into a website.
Is it possible to style this drop down, or is it browser specific?
No, you can't style them as they are not really a part of the webpage itself.
If you're making your own website though, you could make your own drop-down list, which gets a list of recently used usernames, and style that how you want it. But you'll need to use, for example, javscript or php to do that, and it's just completely unnecessary.
And besides, a user should really only have one account on a website.

What is manifest in HTML5 ? and how to use it? [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 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.

How did this website do their splash page/age verification? [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
I am looking at this website - http://www.shopmss.com/ - and I was wondering how they did the splash page, age verification and store all on the same URL 'shopmss.com'. You click through 3 screens before you get back to the store.
My secondary question is, can you do this without setting a cookie? i.e. Javascript, that appends the browser bar URL? Or something with mod_rewrite?
EDIT: I thought this was a relevant question to ask because I was exploring the best practice to accomplish the task, I figured it would have something technical. My bad.
The site is setting a cookie called BX. That could be tracking a session, in which they can display different content based on the state of the session.
They are using a frameset. Check the source.

Customizing ebay store HTML and CSS code (How to?) [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 3 years ago.
Improve this question
I have an ebay store and it has some themes but I would like to be able to change the CSS and HTML code myself.
Does anyone know how this is done?
Thanks
I've done it several times earlier. Main thing is to add link to stylesheet (which is on your server). If i remember correct, you can add it where HTML for header is added, and then style elements generated by eBay. (Don't use id)