Access GMAIL Offline

Gmail is the most preffered email service these days.The reason being that they have been consistently improving their services.Gmail offers more than 7.6 Gigabyte of space which is increasing every second.So, you don’t have to delete even a single email due to lack of space .Their are a lot of addtional features like in Gmail labs like Addtional chat emotions , Preview Pane which can be activated when required.Now you can also get the ability to access Gmail in offline mode which can be really useful if you don’t have internet connection but are in need of urgent access to your mailbox. Although in offline modeyou can’t send an email but can read, manage your emails. This trick will work only on Google Chrome browserHow to Access GMAIL Offline Open your Chrome browser and download Offline Gmail Extension fromhere. Install this extension by clicking on Add to Chrome and select offline Google Mail. After this select Allow offline Mail option and click on Continue button.(Don’t...

HTML5 Geolocation

HTML5 Geolocation is used to locate a user's position Locate the User's Position The HTML5 Geolocation API is used to get the geographical position of a user. Since this can compromise user privacy, the position is not available unless the user approves it. Browser Support Internet Explorer 9, Firefox, Chrome, Safari and Opera support Geolocation. Note: Geolocation is much more accurate for devices with GPS, like iPhone. Using Geolocation Use the getCurrentPosition() method to get the user's position. The example below is a simple Geolocation example returning the latitude and longitude of the user's position: Example <script> var x=document.getElementById("demo"); function getLocation()   {   if (navigator.geolocation)     {     navigator.geolocation.getCurrentPosition(showPosition);     }   else{x.innerHTML="Geolocation is not supported by this browser.";}  ...

HTML5 Video + DOM

HTML5 <video> - Take Control Using the DOM The HTML5 <video> element also has methods, properties, and events. There are methods for playing, pausing, and loading, for example. There are properties (e.g. duration, volume, seeking) that you can read or set. There are also DOM events that can notify you, for example, when the <video> element begins to play, is paused, is ended, etc. The examples below illustrate, in a simple way, how to address a <video> element, read and set properties, and call methods. HTML5...

HTML5 Video

Until now, there has not been a standard for showing a video/movie on a web page. Today, most videos are shown through a plug-in (like flash). However, different browsers may have different plug-ins. HTML5 defines a new element which specifies a standard way to embed a video/movie on a web page: the <video> element. How It Works To show a video in HTML5, this is all you need: Example <video width="320" height="240" controls="controls">   <source src="movie.mp4" type="video/mp4" />   <source src="movie.ogg"...

How to Indexed your Blog In Search Engines

How to Indexed your Blog In Search Engines Another pinger site you can add your blog into different search engine by submitting your blog url or rss feed url. What is the advantage of Indexing your blog into different search engine? The answer is you can see your blog name and url to that search engine just like Google if you search your blog in Google Search all information about your blog appear and another thing is it gives more traffic your blog. Hope get my point ok see the list below. https://www.google.com/webmasters/tools/home?hl=en http://siteexplorer.search.yahoo.com/submit http://www.submitexpress.com http://search.yahoo.com/info/submit.html http://www.mastergoogle.com/free-seo-ad.php?gclid=CK-O8r7b_KsCFRBdhwodPDRBmA http://www.addme.com/ http://freewebsubmission.com/faq.html http://search.yahoo.com/info/submit.html http://metanetpromotions.com/ http://www.submitexpress.com/free-submission.html http://www.addurlfree.com/ Check...

15 Key Elements All Top Web Sites Should Have

1. Good Visual Design First things first… Visual design. I don’t know about you, but if I go to a web site that is not visually pleasing, it is a quick turn off. That’s not to say that every top website needs an incredible visual design — but if a site looks like it hasn’t been updated since 1994, it’s just not going to be associated with other great websites. A clean and simple design is usually all you need. Bells and whistles are nice, but I’m one who tends to go with the “less is more” theory. You don’t want your design to be over crowded. You just want it to look good so it can stand out from your competitor(s) in the minds of your potential clients. First impressions are key. Although good design alone will not keep someone on your site — an eye-catching design will, at the very least, grab their attention long enough to take a look around. 2. Thoughtful User Interface Along with good design comes a good user interface. The user interface is the...

Best SEO Strategy Since Google Panda Update

Its Effects and How It Revolutionizes the Internet The creation of Google Panda algorithm has changed how webmasters and bloggers see the Internet business today. Never was this kind of update happened in the history of Google until last year. Since the acronym SEO had been invented and applied over the years, it’s only now that webmasters and Internet marketers totally changed their whole perception about the relationship between Internet users and search engines, between high and low quality visitors. Since this is the case, webmasters ask themselves, especially ones who have sites that got affected: if traditional SEO is not anymore applicable, what could be the most effective of SEO strategy since this new algorithm update? Here is my two-cent advice: High Quality Content Matters Most Write the highest quality possible for your blog’s niche. And that’s it. This advice seems to be very obvious that nobody wants to hear it anymore. When webmasters...

How to Create a Table in blog or website

From many days i had a question in my mind how to create a rows and columns in the blogger with a well formatted way after a bit R&D i came to know how to create a tables 1. HTML Tags (Traditional way of writing a table using tags quite confusing for non techies) 2. Make a table in word document and use it in blogger( My way... Easy and Cleaner way) 1. Start with first way using HTML tags a standard html format /code for writing a table say 2 column and 4 rows is <table> <tr><td>One </td><td> Two</td></tr> <tr><td>Three </td><td> Four</td></tr> <tr><td>Five </td><td> Six</td></tr> <tr><td>Seven </td><td >Eight</td></tr> </table> All the tables in html starts with <table> and ends with </table> <tr> is tr=table row indicates new row in the table and usually ends with </tr> <td>...

HTML5 Canvas

The canvas element is used to draw graphics on a web page. Your browser does not support the canvas element. What is Canvas? The HTML5 canvas element uses JavaScript to draw graphics on a web page. A canvas is a rectangular area, and you control every pixel of it. The canvas element has several methods for drawing paths, boxes, circles, characters, and adding images. Related Tags Website Tips and tricks Website Marketing Website HTML coding Search Engine Optimization Free SEO Tools, Webmaster Create...

HTML5 Audio

Audio on the Web Until now, there has not been a standard for playing audio files on a web page. Today, most audio files are played through a plug-in (like flash). However, different browsers may have different plug-ins. HTML5 defines a new element which specifies a standard way to embed an audio file on a web page: the <audio> element. How It Works To play an audio file in HTML5, this is all you need: Example <audio controls="controls">   <source src="song.ogg" type="audio/ogg" />  ...

New Elements in HTML5

The internet has changed a lot since HTML 4.01 became a standard in 1999. Today, some elements in HTML 4.01 are obsolete, never used, or not used the way they were intended to. These elements are deleted or re-written in HTML5. To better handle today's internet use, HTML5 also includes new elements for better structure, drawing, media content, and better form handling. Related Tags Website Tips and tricks Website Marketing Website HTML coding Search Engine Optimization Free SEO Tools, Webmaster New...

Traditional SEO No More Relevant

This might be a surprise to the newbies of SEO, or even perhaps to some seasoned bloggers. As we all know, SEO (Search Engine Optimization) is all about link building to increase a blog’s visibility in search engines. This includes link exchange, comments on other blogs, forum posting, blog directories submission, article marketing, and bookmarking. But since Google’s new search algorithm called Panda on February this year to, the traditional SEO is now beginning to fade away like a smoke. It proved on June this year when Google updated PageRanks. Some have been disappointed about the drops of their PRs from 5 to 3 or 3 to 0. Others were gratified by acquiring a PR of 3 or 4 from 0 without doing any SEO. I can also prove this based on my blogs. My other blog, Blogirature, although more than a year old blog, only has 29 posts, without building any links at all from other blogs. In short, no SEO whatsoever. On June it acquired a PR of 1. My...

Web Hosting Reviews Blog

I've written several articles about web hosting before, this time I will inform you about a specific blog that contains about web hosting reviews. It is intended for people who are still confused in deciding which web hosting to use. Where as the existence of the many hosts is often advantageous as a result of it provides you a lot of choices, it may also be disadvantageous as a result of it makes selecting just about troublesome. However, to form the task of choosing easier, it’s advisable to see out reviews and ratings of several the highest internet hosts. Alreadyhosting.com is a blog that contains articles about web hosting. This blog is conducting a review and also gives ratings for each web hosting services that have been reviewed, based on features and price. In this blog, you'll see a list of 10 best web hosting services that you can consider. Not only that, Alreadyhosting.com has partnered with hundreds of web hosting companies to offer exclusive hosting discounts,...