Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

seo Apa itu Web Spam di mata Google? 2013




Saat ini sedang diluncurkan Algoritma Google terbaru 2012, yaitu Google Penguin. Algoritma ini ditambahkan untuk mendeteksi halaman-halaman web yang tergolong spam. Mungkin ada yang masih bingung apa Spam itu? Spam adalah segala kegiatan yang bertujuan untuk menaikkan peringkat blog dengan cara tidak wajar



Apa yang dimaksud dengan Web Spam?

Mari kita bahas satu persatu...



Kualitas isi

seo Cara Mengubah Warna HIGHLIGHT TEXT Di Blog 2013



Cara Mengubah Warna HIGHLIGHT TEXT Di Blog sebenarnya sangatlah mudah. Hanya dengan sedikit penambahan kode pada CSS, kita sudah bisa mengubah warna latar HIGHLIGHT TEXT atau Teks yang disorot. Cara ini sebenarnya bukanlah teknik yang penting dalam SEO, ini hanyalah sekedar untuk mempercantik penampilan blog anda saja.

Warna default HIGHLIGHT TEXT di blog kebanyakan adalah berwarna biru. Jika

seo New Blogger Widget: Contact form - Change Style & Install in a Static Page 2013

Seo Master present to you: Just a few days ago, Blogger introduced a new widget. It is about a contact form that you can add to your blog easily. It is very basic, because - at least for now, does not permit incorporating files or send anything other than plain text.

The contact form for Blogger has the following features:
  • Field for the user name
  • Field for email
  • Field for the message (textarea)
  • Submit Button
Screenshot
contact form, blogger gadgets, static page
 The design is simple and the text colors inherit the section where you add it. At the moment, this widget has no configuration options and is not available for dynamic views.

How to Add Contact Form to Blogger

To add it to your blog, just select the Layout tab, then click on Add a gadget in the section you want to show, for example, in the sidebar. Then, select the More gadgets tab and add the Contact Form gadget.


blogger gadgets, blogger widgets, contact form

Styling Contact Form


As the background is transparent, the form will integrate well, aesthetically speaking, but nevertheless it is easy to modify using Style Sheets (CSS) to the appropriate selectors. Here's an example:

/* Contact Form Container */
.contact-form-widget {
width: 500px;
max-width: 100%;
margin: 0 auto;
padding: 10px;
background: #F8F8F8;
color: #000;
border: 1px solid #C1C1C1;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}

/* Fields and submit button */
.contact-form-name, .contact-form-email, .contact-form-email-message {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
}

/* Submit button style */
.contact-form-button-submit {
border-color: #C1C1C1;
background: #E3E3E3;
color: #585858;
width: 20%;
max-width: 20%;
margin-bottom: 10px;
}

/* Submit button on mouseover */
.contact-form-button-submit:hover{
background: #4C8EF9;
color: #ffffff;
border: 1px solid #FAFAFA;
}

This is how it will look like after applying the style:
contact form, blogger gadgets, contact form for blogger

To add this style, go to Template > Edit HTML, click on the sideways arrow next to <b:skin>...</b:skin> and paste the code just above ]]></b:skin> (press CTRL + F to find it):


How To Add Contact Form In A Static Page


First step is to add the Contact Form gadget (Layout) and second, to edit the template (Template > Edit HTML) to remove most of the gadget. You have to search for the id "ContactForm", expand the widget by clicking on the black arrow on the left (same with the includable) and then delete the part that I have colored in red (see below):

Part to be removed:

  <b:widget id='ContactForm1' locked='false' title='Contact Form' type='ContactForm'>
    <b:includable id='main'>
  <b:if cond='data:title != &quot;&quot;'>
    <h2 class='title'><data:title/></h2>
  </b:if>
  <div class='contact-form-widget'>
    <div class='form'>
      <form name='contact-form'>
        <p/>
        <data:contactFormNameMsg/>
        <br/>
        <input class='contact-form-name' expr:id='data:widget.instanceId + &quot;_contact-form-name&quot;' name='name' size='30' type='text' value=''/>
        <p/>
        <data:contactFormEmailMsg/> <span style='font-weight: bolder;'>*</span>
        <br/>
        <input class='contact-form-email' expr:id='data:widget.instanceId + &quot;_contact-form-email&quot;' name='email' size='30' type='text' value=''/>
        <p/>
        <data:contactFormMessageMsg/> <span style='font-weight: bolder;'>*</span>
        <br/>
        <textarea class='contact-form-email-message' cols='25' expr:id='data:widget.instanceId + &quot;_contact-form-email-message&quot;' name='email-message' rows='5'/>
        <p/>
        <input class='contact-form-button contact-form-button-submit' expr:id='data:widget.instanceId + &quot;_contact-form-submit&quot;' expr:value='data:contactFormSendMsg' type='button'/>
        <p/>
        <div style='text-align: center; max-width: 222px; width: 100%'>
          <p class='contact-form-error-message' expr:id='data:widget.instanceId + &quot;_contact-form-error-message&quot;'/>
          <p class='contact-form-success-message' expr:id='data:widget.instanceId + &quot;_contact-form-success-message&quot;'/>
        </div>
      </form>
    </div>
  </div>
  <b:include name='quickedit'/>

</b:includable>
  </b:widget>

After you have saved the template, go to Pages and paste the following code into a new blank page with the title you want:

 <div class='widget ContactForm' id='ContactForm1'>
  <div class='contact-form-widget'>
    <div class='form'>
      <form name='contact-form'>
        <p>Name<p>
        <input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' type='text' value=''/>
        <p>E-mail *</p>
        <input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' size='30' type='text' value=''/>
        <p>Message *</p>
        <textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' rows='5'></textarea>
        <input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='Submit'/>
        <p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p>
        <p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p>
      </form>
    </div>
  </div>
</div>

Messages will be sent to the same email that you have registered in Blogger.

Here's a demo page where you can test it (it is an account that I don't use, so don't expect reply).


That's it! If you have any questions or comments please post below.2013, By: Seo Master

seo CARA MEMBUAT BLOG DI BLOGGER 2013





Cara membuat blog di blogger sangatlah mudah. Bahkan sudah banyak anak SD yang mempunyai blog sendiri. Jadi rasanya anda tidak akan mengalami kesulitan apapun di sini.



Untuk membuat blog di blogger ada 3 hal yang harus anda ketahui, yaitu:

Cara membuat akun blog di blogger
Cara membuat blog
Cara membuat artikel di blogger




Berhubung saya tidak pintar membuat artikel yang

seo Algoritma terbaru Google Penguin beraksi, Waspadalah! 2013






Google kembali meluncurkan algoritma tambahan untuk melengkapi algoritma sebelumnya. Setelah Panda, sekarang menyusul algoritma penguin. Apa fungsi dari algoritma terbaru 2012 bernama penguin ini? Lalu apakah blog anda terkena pengaruhnya? Jika ya bagaimana mengatasinya? Mudah-mudahan pembahasan berikut bisa sedikit memberi pemahaman tentang si penguin ini.

Google telah mengumumkan bahwa

seo How to Enable and Customize Blogger Robots.txt File? 2013

Seo Master present to you:
Robots.txt
Hi ! In this tutorial I am going to show you how to edit your Blogger blog robots.txt file. Webmasters use custom robots.txt file to control search engine web robots (also known as Web Wanderers, Crawlers, or Spiders) to crawl some directories and web pages or links of website or blog. when we take settings robots.txt file in blogger then search engine automatically index or remove pages from search engine according to the settings. 

By default each website allows the Search engines robots however if you would like to restricts the robots either to not crawl any bound directory, file or the complete website then you may want the robots.txt file in which you've got to write instructions for search engine bots.

Steps to edit robots.txt on blogger

Your Site Settings › Search preferences › Crawlers and indexing  
Here you will able to see two options Custom robots.txt and Custom robots header tags.These two
 options would offer you the flexibility to customise your robot.txt file.In the last post i told you about
Custom robots header tags.
Now press edit button which is present after  'Custom robots.txt' option. After pressing on edit button
you can see a message " Enable custom robots.txt content? " so press "Yes" and proceed to next step.
Custom robots.txt - Search preferences
Now you can see  text area, type the content which you want to exclude a content from crawling.
Click on Save Changes button.
Enable Custom robots.txt - Search preferences

You are done!
How to block Link from search engines?
No, you have to write the URL. For example, if your want to stop robots from crawling this URL
(www.www.matrixar.com/p/about.html) then, in the robot.txt file you will enter this command.
User-agent: *Disallow: p/about.html
Your robots.txt file located under your main blogspot directory as for Blogger Known its located on the following url:
http://www.www.matrixar.com/robots.txt
By default blogger robots.txt contains the following content:
User-agent: Mediapartners-Google
Disallow:
User-agent: *
Disallow: /search
Allow: /
Sitemap: http://www.matrixar.com/feeds/posts/default?orderby=UPDATED
I know this post is not a new thing but I hope it might help many newbies to understand the importance of robots.txt.
2013, By: Seo Master

seo Fridaygram: Galapagos images, smart dog, timely entanglement 2013

Seo Master present to you: Author Photo
By Scott Knaster, Google Developers Blog Editor

On Fridaygram we love to celebrate amazing new Street View images. This week we announced new panoramic views of the Galapagos Islands, collected with with the Street View Trekker in partnership with the Charles Darwin Foundation (CDF) and the Galapagos National Parks Directorate (GNPD). These images will go live on Google Maps later this year, but you can see a preview below and on the Official Google Blog.

giant turtle

The Maps team’s 10-day adventure included lots of interaction with local wildlife, but didn’t take place entirely on land. The team worked with the Catlin Seaview Survey to collect underwater ocean images too. And in addition to being beautiful and fun, these pictures have a practical use: they act as a visual record that can be compared to changes observed in the future.

Speaking of wildlife, do you have a smart dog? And does your smart dog know 1000+ words, plus have a basic comprehension of grammar? Meet Chaser, a 9-year-old border collie who has been taught to recognize the names of 1000 objects, as well as the meaning of some verbs and prepositions. In tests, Chaser correctly (most of the time) responded to commands such as “take ball to Frisbee”, or even “to Frisbee take ball”. If only our friends and family were that helpful.

Finally, there’s some typically mind-blowing news from the world of quantum physics. We already know that quantum particles can share a connection called entanglement, which allows one particle to reflect the state of another no matter how far apart they are. Now an experimental discovery shows that particles can be entangled even if they don’t exist at the same time. We agree with experimenter Jeremy O'Brien of the University of Bristol, who said “It’s really cool”.


Fridaygram is about randomly cool and nerdy stories that we hope will amuse you and possibly inspire your weekend. Around here we’re still feeling the Google I/O afterglow, so we’re going to recommend you spend some time this weekend watching some of the many session videos from I/O. If that’s not your thing, maybe you’d like this brief but inspiring video that kicked off the conference.
2013, By: Seo Master

seo How To Change Animated Cursor Mouse In Blogger 2013

Seo Master present to you:


To get free animated cursors You can visit these 2 sites:

www.totallyfreecursors.com
OR
www.cursorpedia.com

On those sites You can select cursor and add it on Your blog (blogspot) via widget. As You know that animated cursor has the specific extention file, like .ani, .cur 



STEP 1

1. Firstly, go to visit www.totallyfreecursors.com



2. Now select a cursor.


3. copy the HTML code below






STEP 2

1. Login to Your Blogger account

2. From Dashboard, go to Layout






3. Click “ Add a gadget “ option



4. Select Html /Java script




5. Then now just simple Paste the HTML code You have Copied from the site into gadget box


6. Now Save Your gadget.
2013, By: Seo Master

seo System Speed Booster 3.0.0.2 Pro Full Version With Crack 2013

Seo Master present to you:

System Speed Booster is a software utility which category with your buddies in to help in overcoming the many computer systems are experiencing temporary files, junk files, registry errors,.System Speed Booster is just what you need to take you up to date. It charges nothing to allow you enjoy the no error system, faster speed, clean and safe network. A couple of clicks, you will make your computer as perfect as new with System Speed Booster in no time.

System Speed Booster3.0.0.2 Pro Full Version With Crack (www.www.matrixar.com)

 

Download System Speed Booster3.0.0.2 Pro Full Version With Crack: Click here (Alternate Link)

 

Features

  • Streamline Registry
    By scanning and removing all the obsolete registry entries, System Speed Booster will make your Windows registry compact and clean to speed up the running of your PC.
  • Optimize System
    Problems will be found in your system, with the help of System Speed Booster you can fix all the errors for an optimization of system.
  • Faster Work Efficiency
    From installing to running the app, the processes are smooth and fast. Just a few minutes, you will enjoy the best PC experience ever.
  • Free & Safe
    There is no doubt about it. The award-winning software is 100% free and no adware, no spyware, no virus at all.
  • Multi-functional
    Besides the Registry Fix functions, other built-in tools include Privacy Sweep, Junk Files Removal, System Optimization, etc. All these tasks can be settled in one go.

Pro Benefits

  • No limitation on fixing errors.
  • Automated Scan and Sweep enabled.
  • Optimize your system with Zero-touch.
  • A better organized registry.
  • Faster system speeds.
  • Immediate Serial Number sending as the order is successfully placed.
  • The Privacy Guaranteed. All users' individual information is secure.

 

 

 

Leave a comment ……. if links are broken…………..

2013, By: Seo Master

seo Hacking for humanity in Silicon Valley and around the globe 2013

Seo Master present to you:
By Carlos Cuesta, Developer Marketing Team

Cross-posted with the Official Google Blog

Two years ago representatives from Google, Microsoft, Yahoo!, Hewlett-Packard, NASA and the World Bank came together to form the Random Hacks of Kindness (RHoK) program. The idea was simple: technology can and should be used for good. RHoK brings together subject matter experts, volunteer software developers and designers to create open source and technology agnostic software solutions that address challenges facing humanity. On June 4-5, 2011 we’ll hold the third Random Hacks of Kindness global event at five U.S. locations and 13 international sites, giving local developer communities the opportunity to collaborate on problems in person.


The RHoK community has already developed some applications focused on crisis response such as I’mOK, a mobile messaging application for disaster response that was used on the ground in Haiti and Chile; and CHASM, a visual tool to map landslide risk currently being piloted by the World Bank in landslide affected areas in the Caribbean. Person Finder, a tool created by Google’s crisis response team to help people find friends and loved ones after a natural disaster, was also refined at RHoK events and effectively deployed in Haiti, Chile and Japan.

We’re inviting all developers, designers and anyone else who wants to help “hack for humanity,” to attend one of the local events on June 4-5. There, you’ll meet other open source developers, work with experts in disaster and climate issues and contribute code to exciting projects that make a difference. If you’re in Northern California, come join us at the Silicon Valley RHoK event at Google headquarters.

And if you’re part of an organization that works in the fields of crisis response or climate change, you can submit a problem definition online, so that developers and volunteers can work on developing technology to address the challenge.

Visit http://www.rhok.org/ for more information and to sign up for your local event, and get set to put your hacking skills to good use.



Carlos Cuesta is a Product Marketing Manager in Mountain View, focusing on Google Geo APIs (Maps, Earth, Fusion Tables, and Places). When he's not at work, he spends his spare time hunting down the latest food trucks and street vendors, using Google Maps, of course.

Posted by Scott Knaster, Editor
2013, By: Seo Master

seo How To Find Windows 8 Product Key With Belarc Advisor 2013

Seo Master present to you:

Friends, Now i share a trick to find Windows 8 product key with a useful software named Belarc Advisor. It is a Pc Audit Software and Fully Supports Windows 8.It Analyzes Your Pc by going in Depth.It is one of the best product key finder programs and gave a 100% Result on windows 8.  Belarc Advisor builds a detailed profile of your installed software and hardware, network inventory, missing Microsoft hotfixes, anti-virus status, security benchmarks, and displays the results in your Web browser. All of your PC profile information is kept private on your PC and is not sent to any web server.

Belarc Advisor windows 8 key finder(www.www.matrixar.com) 

Download Belarc Advisor: Click here

 

  • Install Belarc Advisor by following whatever instructions are given while installation.
  • Run Belarc Advisor and it will analyze your Pc.Then note down the windows 8 product key displayed in the Software Licenses Section.
  • The Windows 8 Product Key is a combination of 25 letters and numbers and looks something like this xxxxx-xxxxx-xxxxx-xxxxx-xxxxx.
  • Note down the key for further use as you will need while reinstalling windows.

Note:-Take very good care of the letters and numerals while writing the windows 8 product key.If any digit or numeral gets wrong the key will not work.This method will work on most of the versions of windows.

 

Features

  • Operating Systems: Runs on Windows 8, 2012, 7, 2008 R2, Vista, 2008, 2003, XP, 2000, NT 4, Me, 98, and 95. Both 32-bit and 64-bit Windows are supported.
  • Browsers: Runs on Internet Explorer, Firefox, Safari, Opera, and many others.
  • File size: 3135 KB.
  • License: The license associated with this product allows for free personal use only. Use on multiple PCs in a corporate, educational, military or government installation is prohibited. See the license agreement for details.

 

 

 

Leave a comment………………below…………….

 

2013, By: Seo Master

seo 3 Great Facebook Alternatives 2013

Seo Master present to you:
3 Great Facebook Alternatives

Maybe you’re tired of the the ticker. Or the timeline. Maybe it’s because your parents constantly check your profile. If it’s not any of these then you’ve probably had it with the constant stream of ads that are specifically tailored to target you. Because let’s face it: we are a bit tired of Facebook. It’s time to unlike them and chose a different social media platform.

Here are three great alternatives:

3.) MeetMe

According to their website you should join as it is “fun, friendly and free!” and currently boasts more than 90 million users MeetMe is different from Facebook in the sense that it is a place to meet new people rather than staying in touch with friends you already know. MeetMe was founded eight years ago under the name myYearbook by two students. On the site people use a virtual currency with which they can send gifts to each other: lunch money. You can earn lunch money by playing Flash games on the site. On MeetMe you’ll find the chance to instant message your new friends, ask them to rate your appearance and play games like truth or lie.

2.) Nextdoor

Nextdoor is a social network platform that specifically targets a special geographical area. Their website informs us that “when neighbours start talking, good things happen.” You will be able to only get in touch with people that live really close to you. Upon registering you need to fill in your address. Once this is done you’ll get a list of people living nearby who are also using Nextdoor. The website hopes to build a stronger neighbourhood by helping neighbours connect so that they can inform each other and share local information.

1.) Google +

This will not come as a surprise to many, but the best alternative to Facebook is Google +. G+ is the second biggest social network site in the world. With 500 million users, it surpassed Twitter in January this year. Where you share with your friends on Facebook, on Google + you share with your circles. The most striking feature is Google hangouts: a place where you can invite people from your circles to join a video chat. Other features are games and instant messaging. In a ‘community’ you can invite people to share information as you would do with a group on Facebook. Users can see what plussers talk about most in the ‘what’s hot’ section.

These are some Facebook alternatives that are definitely worth checking out. Do you know which one you want to sign up on next?




Author Bio:
This guest post is written by Rens van der Windt, a digital marketing executive from London. One of his clients is Intralinks more than a VDR, a secure document storage provider.
2013, By: Seo Master

seo What is Sitemap and Backlink 2013

Seo Master present to you: What are Sitemaps?

Sitemaps are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site.
Sitemapxml
What is a Backlink?

The backlink is essentially the same thing as an inlink. It is a link on someone else’s site that leads to your own, and it’s extremely important to garner a large number of backlinks that are reputably obtained for several reasons. First, in SEO or search engine optimization, part of the algorithm for ranking your page on search engines is determined by the number and quality of backlinks to your site, providing they occur naturally and you have not purchased them. Second, backlinks are how you get known on the Internet. If lots of other sites provide a link to yours, a natural increase in traffic to your web pages occurs.2013, By: Seo Master

seo Why The Humble Inkjet Printer Will Not Be Completely Superseded By Lasers (at Least Not YET Anyway) 2013

Seo Master present to you:
Why The Humble Inkjet Printer Will Not Be Completely Superseded By Lasers (at Least Not YET Anyway)

Although laser printers are far more affordable than they once were (there was a time in the not too distant past where a decent laser printer would set you back about the same as a new car), the market for ink based printers in larger than ever. Why is this? You might ask yourself. Well it can't be denied that cost is still a significant contributing factor but it's more complicated than that. Inkjet printers might not be able to compete with the definition and clarity of their laser based counterparts when it comes to plain black text, but in the world of colour printing, ink still reigns supreme.

Colour me In

No matter how much you spend on a laser printer, you will never achieve the kind of realistic, textured results you'll get with a decent colour inkjet printer. For printing photographs there really isn't any comparison. Colour laser printers have come a long way in the last 10 years granted, but there's a depth to inkjet printing that just can't be replicated by laser.

Money Money Money

To put into perspective just how much more expensive laser 'toner' cartridges are than standard ink cartridges; it will take an average of £300 to fund an entire colour print cycle of a laser printer and around £70 to fund a print cycle with a colour inkjet printer. Granted the page yields offered by laser printers are far superior but you're only saving money if you print a lot and on a regular basis. For those who use their printer on only a semi-regular basis, there is really no need to spend the extra money. The printer itself will also be far more affordable, with a range of budget ink printers from reputable manufacturers such as Brother and Lexmark that should cost half as much as laser printers of comparable quality.

Versatility

Inkjet printers are incredibly versatile and can quite comfortably print on a variety of media including craft paper, printable CD's and even T-Shirt transfers. Laser printers on the other hand can print only onto standard paper or specifically engineered 'printer paper'. Certain inkjet printers are also capable of printing to larger formats whereas the majority of laser printers (even expensive models) are restricted to A4 sized paper and smaller.

Ease of Use

A laser printer is a complicated machine with thousands of intricate components, any number of which could go wrong at a moments notice and cause your printer to fail completely. A laser printer will also require a 'warm-up' period before it becomes operational and might be prone to overheating (especially if it's a cheaper model). With an inkjet printer you're looking at a far more straightforward device that will be ready to use as soon as you boot it up and will be far more convenient to refill. The majority of inkjet printers built in the last 5 years will accept combination 'CMYK' cartridges too, whereas laser printers will require 4 separate toner cartridges in order to print in full colour.

Playing Devils Advocate

The major argument FOR laser printers really all comes down to how much and how often you plan on printing. It can be argued that in most office based situations where speed and quantity is more important than quality, laser printers are far better suited to the job. However this isn't necessarily the case in all commercial situations. In professional print shops for example where quality colour is as vital a component of their day-to-day business as readable text, inkjet printers are still common, though for larger runs (over 100), laser is (admittedly) the superior option.

The choice is really up to you. However, if you genuinely care about your colours, then the choice should at least have been made a lot easier for you. Inkjet printers have been around in the commercial marketplace since the 1970's and manufacturers have used that experience to make sure their inkjet products are more efficient than ever. With toner cartridges still beyond the price range of most home users and inkjet printers and cartridges getting more affordable by the day, it would appear that (for the time being at least) ink is here to stay.




Author Bio:
Jann Webb is a freelance copywriter who has been using the same inkjet printer for almost a decade and it has yet to let him down. She gets all of her supplies from the wonderful people over at http://www.inkcartridges.co.nz
2013, By: Seo Master

seo HTML Character Count SEO Tool for Blogger 2013

Seo Master present to you:
HTML character count SEO tool for blogger
HTML Character count Tool is a popular tool to count characters that is used for SEO.You can count characters in the following Tool.Character count is mainly used to count Blogger post title characters. In Google SERP(Search Engine Result Page), Google shows 61characters of title of blog post.So keep Blog Title less than or equal to 61 characters. Manual counting of characters in title with white spaces is, i think it is bit difficult So use this tool to count..






I hope you are enjoyed with this article please share it...
Thanks...

2013, By: Seo Master

seo How To Send An Email To All Conatct In Gmail 2013

Seo Master present to you:




It Is easy way to send a message to all contact in Gmail. Just following instruction step by step.


Log in Your Gmail and click Gmail. Now drop down a menu like below and select contacts from this menu.



Then click Circles. You will see the contact list like below picture.



Click the above square button then drop down a menu select “All”



Click email button.



Type subject and letter body. Then hit send button.




After that you will get a page like below.




















Are u happy???????????????????????

2013, By: Seo Master
Powered by Blogger.