Tuesday, 22 April 2014

UPDATE: HOW TO ADD PAGES TO YOUR BLOG


Recently,Blogger made an update to the way pages are added to blogs. Here is an updated tutorial that will walk you through the new process, step by step.
Steps for adding pages to your blog:

Step 1: Log in to the Blogger blog you are wanting to add pages to and click on the “Pages” link.



Step 2: Click the “New Page” button.

Tuesday, 25 March 2014

How To Use ReCaptcha

To make the reCAPTCHA widget appear when your page loads, you will need to insert this snippet of JavaScript & non-JavaScript code in your <form> element and replace your_public_key with your public key:



<script type="text/javascript"
     src="http://www.google.com/recaptcha/api/challenge?k=your_public_key">
  </script>
  <noscript>
     <iframe src="http://www.google.com/recaptcha/api/noscript?k=your_public_key"
         height="300" width="500" frameborder="0"></iframe><br>
     <textarea name="recaptcha_challenge_field" rows="3" cols="40">
     </textarea>
     <input type="hidden" name="recaptcha_response_field"
         value="manual_challenge">
  </noscript>


So your page will look something like this:


<!-- ... your HTML content ... -->

  <form action="" method="post">

    <!-- ... your form code here ... -->

    <script type="text/javascript"
       src="http://www.google.com/recaptcha/api/challenge?k=your_public_key">
    </script>
    <noscript>
       <iframe src="http://www.google.com/recaptcha/api/noscript?k=your_public_key"
           height="300" width="500" frameborder="0"></iframe><br>
       <textarea name="recaptcha_challenge_field" rows="3" cols="40">
       </textarea>
       <input type="hidden" name="recaptcha_response_field"
           value="manual_challenge">
    </noscript>

    <!-- ... more of your form code here ... -->

  </form>


  <!-- ... more of your HTML content ... -->