What is reCaptcha ?
reCAPTCHA is a free service from Google that helps protect websites from spam and abuse. A “CAPTCHA” is a turing test to tell human and bots apart. It is easy for humans to solve, but hard for “bots” and other malicious software to figure out. By adding reCAPTCHA to a site, you can block automated...
Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts
18 April 2019
14 June 2015
One option is to embed both the SVG and the canvas element directly into the HTML page, and then access the canvas element from script within SVG:
<!DOCTYPE html>
<head>
<title>Canvas and SVG</title>
<meta charset="utf-8" />
</head>
<body>
<canvas id="myCanvas" width="400px"...
9 June 2015
Rounded Border Around an Image is better than a normal image .Using Css3 we can handle the image border and can add some extra visual effect on it.In this tutorial ,I am going to show u these things .
Set the border value and then use the CSS3 border-radius property along with its browser-specific border-radius...
5 June 2015
Scalable Vector Graphics 0r SVG is the new XML-based graphics standard from the W3C that will enable Web documents to be smaller, faster and more interactive.
If the SVG is embedded directly in the web page, access the element and its attributes using the same functionality you would use with any other...