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

seo 2 CARA MEMBUAT WEBSITE .COM SENDIRI 2013






Cara membuat website sendiri sebenarnya bisa agak sedikit merepotkan, tergantung cara saudara melakukannya. Pada dasarnya membuat website bisa dengan domain apa saja, tapi kali ini saya akan membahasnya khusus dengan domain .com, karena domain ini memberikan beberapa keuntungan dalam penggunaannya....


Kalau saudara ingin membuat sebuah website, maka saudara tentunya harus paham sedikit

seo Google Developer Day: A fantastic worldwide day 2013

Seo Master present to you:

We have enjoyed a fantastic day so far. Watching the worldwide map throb new locations to life throughout an entire worldwide day has been a real treat.

Each of the developer day events had their own feel, but the buzz seemed to be the same.

With the announcement of Google Gears, Mapplets, and the like, there has been a lot to talk about.

There is a lot of information out there, but a brief roundup:

Google Gears
Google Web Toolkit
Google Geo
Other
And this is the tip of the iceberg.

For more, check out the growing list of YouTube videos of the sessions, view the pictures from the event, and see what people are saying about it.

Now it is time to watch the last marker go red at the party back at the Googleplex.

Then tomorrow comes, and we get back to work to take in the suggestions and ideas from the community, and to press on from here!2013, By: Seo Master

seo Add Floating Social Media Sharing Buttons To Blogger 2013

Seo Master present to you: The Floating Social Media Sharing is a very popular widget on all the top blogs, being a very good way to increase the number of times your posts get shared on Twitter, Facebook and other social networks. It has some of the following functions: Facebook Like, StumbleUpon, Twitter Share, Digg This, Google+ and RSS Feed Icon and each of them comes with a live counter. You can add more sharing buttons or social bookmarking icons later if you wish.

Blogger, WordPress, Facebook, Share

How to add the scrolling social bookmarking bar


The code to copy-paste (updated!):

<!-- floating share bar Start www.matrixar.com--> <style type="text/css"> #pageshare {position:fixed; bottom:5%; margin-left:-721px; float:left; border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;background-color:#fff;padding:0 0 2px 0;z-index:10;} #pageshare .sbutton {float:left;clear:both;margin:5px 5px 0 5px;} .fb_share_count_top {width:48px !important;} .fb_share_count_top, .fb_share_count_inner {-moz-border-radius:3px;-webkit-border-radius:3px;} .FBConnectButton_Small, .FBConnectButton_RTL_Small {width:49px !important; -moz-border-radius:3px;/*bs-fsmsb*/-webkit-border-radius:3px;} .FBConnectButton_Small .FBConnectButton_Text {padding:2px 2px 3px !important;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:8px;} </style> <div id='pageshare' title="Get this from Helpblogger.com">
<div style="margin-left:8px;"><div class='sbutton' id='like' style='margin: 5px 0 0 5px;'><script src='http://connect.facebook.net/en_US/all.js#xfbml=1'></script><fb:like layout='box_count' show_faces='false'></fb:like> </div></div>
<br /><div class='sbutton'><a class='twitter-share-button' data-count='vertical' data-via='Helplogger' expr:data-counturl='data:blog.url' href='http://twitter.com/share' rel='nofollow'>Tweet</a><script src='http://platform.twitter.com/widgets.js'; type='text/javascript'></script>
<br /><div class='sbutton' id='su'> <script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script> </div> <div class='sbutton' id='digg' style='margin-left:3px;width:48px'> <script src='http://widgets.digg.com/buttons.js' type='text/javascript'></script> <a class="DiggThisButton DiggMedium"></a> </div> <div class='sbutton' id='gplusone'> <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script> <g:plusone size="tall"></g:plusone></div><br/><a href='http://feeds.feedburner.com/helplogger' rel='nofollow' target='_blank' title='Subscribe To Our Rss Feed'><img src='http://www.matrixar.com/-MoGJ9Y3EdzQ/T8f4cj6LHMI/AAAAAAAACP4/VsM0eaG2EM4/s1600/icon_rss_reader.png'/></a><div style="clear: both;font-size: 9px;text-align:center;">Get <a style="color: #3399BB;" href="http://www.matrixar.com/">widget</a></div><!-- Do not remove this link --> </div> <!-- floating share bar End --></div>


Customization:
  • Vertical alignment - Change the value of bottom in code line 3. The code positions the button relative to the bottom of your browser window. To fix the distance even when window is resized, specify the value in px (pixels) instead of %.
  • Horizontal alignment - Change the value in red of margin-left. Negative value pushes the button to the left of the main blog column, positive value pushes it to the right. Increase or decrease the value based on your needs.
  • Twitter setting - Replace Helplogger with your Twitter username
  • Replacing and removing buttons - You can replace existing buttons with your own. Each button is represented by this code: <div class='sbutton'> BUTTON CODE HERE </div>
  • RSS Feed - Change the text in blue with the url address of your RSS feed.
Enjoy :)


2013, By: Seo Master

seo Multi Hover Effect On Blogger Images Using Pure CSS 2013

Seo Master present to you: Today I'm going to show you how to add an amazing mouseover effect for Blogger images using only CSS, in which moving your mouse over an image from different directions (from above, from below, etc) will cause an overlay transitioned in from the same vector. This trick will change not only the images appearance when moving mouse over them, but will also allow you to add inside a text with a description.

hover effect, mouseover, blogger hover effects

You can see the effect on this image below: try moving your mouse from the left, right, and above.

hover right hover top hover left hover bottom

Adding Hover Effect From Different Directions on Blogger Images

First thing to do is to add the CSS style to our Template:

Step 1. From Blogger Dashboard, go to Template and press the Edit HTML button



Step 2. Search for the </head> tag - to find it, click anywhere inside the code area, press CTRL + F keys and type it in the search box.


Step 3. After you found it, add the following style just above it: 
<style>
  /* The container and the image */
  div.multi-hover {
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    width: 100%;
    height: 358px;
    line-height: 358px;
  }
  div.multi-hover img {width: 100%;}

/* The texts that, by default, are hidden */
  div.multi-hover span {
    color: #FFF;
    font-size: 32px;
    font-weight: bold;
    height: 100%;
    opacity: 0;
    position: absolute;
    text-align: center;
    transition: all 0.3s linear 0s;
    width: 100%;
  }

/* And this is what will generate the effect */
  div.multi-hover span:nth-child(1) { /* right */
    background: none repeat scroll 0 0 rgba(255, 189, 36, 0.6);
    left: 90%;
    top: 0;
  }
  div.multi-hover span:nth-child(2) { /* top */
    background: none repeat scroll 0 0 rgba(106, 170, 255, 0.6);
    left: 0;
    top: -80%;
  }
  div.multi-hover span:nth-child(3) { /* left */
    background: none repeat scroll 0 0 rgba(204, 87, 166, 0.6);
    left: -90%;
    top: 0;
  }
  div.multi-hover span:nth-child(4) { /* bottom */
    background: none repeat scroll 0 0  rgba(97, 181, 115, 0.6);
    left: 0;
    top: 80%;
  }

  div.multi-hover span:hover {opacity: 1;}
  div.multi-hover span:nth-child(2n+1):hover {left: 0;}
  div.multi-hover span:nth-child(2n):hover {top: 0;}

</style>
Step 4. Save the Template

Now we are going to add the HTML that is nothing but a DIV where we included four SPAN tags with texts and an image:

Step 5. Choose Posts, create a New Post, click on the HTML tab (1) and paste this code inside the empty box:
<div class=multi-hover>
  <span>hover right</span>
  <span>hover top</span>
  <span>hover left</span>
  <span>hover bottom</span>
  <img src="http://www.matrixar.com/-iNaV2hPrI7Y/UaNY2q0ETiI/AAAAAAAADio/TjGwDktvlPQ/s1600/flowers">
</div>
Add your own text/description to "hover right", "hover top", "hover left" and "hover bottom" (2) and replace the url in blue with the image URL (3) where you want to apply the effect.

Important! Do not click on the Compose tab, otherwise the changes will be lost.


Step 6. After you finished editing your post, click Publish (4)

And that's it... enjoy! :)
2013, By: Seo Master

seo Fridaygram: supporting nonprofits, yawning dogs, Easter egg in space 2013

Seo Master present to you:
Scott
Maya
By Maya Amoils, Google.org, and Scott Knaster, Developer Relations

Throughout this month, we’ve asked developers around the world to sign up for Be Mindful in May, a one-month meditation campaign that challenges participants to learn about meditation while simultaneously dedicating their efforts to a global cause: providing clean water to people in developing nations. So far the campaign has raised over $75,000 AUD for this important issue, and the Google Developers team has raised $1700 AUD.

The money raised through Be Mindful in May will go to charity:water, an organization that’s helping to bring clean, safe drinking water to the nearly 1 billion people who struggle every day without it.



To help support nonprofits like charity:water, last month we released the One Today mobile app as a limited pilot in the US. One Today introduces users to new projects each day across a wide range of issues, and enables users to donate $1 to the cause. One Today users can amplify their impact by matching their friends’ donations. If you’re in the US, you can join the One Today pilot by requesting an invite.

From making a difference in the world to wacky science, studies suggest that dogs yawn in response to humans. And not only that: further research shows that sometimes, dogs yawn in empathy with humans yawning, while other times, dogs yawn because they’re feeling stress, as when they’re listening to their owners. Much more research involving yawning dogs and people will be necessary to fully sort this out.

Finally, if you’re previewing the new Google Maps, you might be interested in this cool Easter egg. And if you’re not on the new Google Maps, you can request an invite. It’s really nice, and might even keep you from yawning.


Fridaygrams provide a chance for us to focus on fun and interesting stuff that’s not necessarily related to writing code. Sometimes we even get to feature inspiring content, like this week’s information about helping nonprofits.

Maya Amoils is a member of the Google.org marketing team where she works on a number of the team's charitable giving initiatives. Maya holds a BA in Science Technology & Society from Stanford University. Outside of work, you can find her biking around the Bay Area or making playlists on Spotify.

Scott Knaster is the editor of Google Developers Blog. He likes family time, technology, and watching the San Francisco Giants win baseball games.

2013, By: Seo Master

seo Top 5 Ways To Monetize Your Blog. 2013

Seo Master present to you:
There are various ways to earn money from your blog. Many webmasters start blogging for the sole purpose of making money but majority of them give up because they don't see any practical earnings in the beginning. However, money making from blog takes some time and the results are shown to those who continue even after seeing a little or no income at all in beginning. The real thing is to keep hanging up for some time, may be an year. 
 
Here is a list of 5 different ways of making money to your blog. Choosing the right option for yourself depends upon your niche and the way of your blogging and you should give a research as to which form will earn you more. Or you can try some for days, and find out the best one for yourself. 


1. Pay Per Click. This is the most widely used form of earning. As the name suggest, you get paid when a visitor clicks on the ads shown on your website. This method of earning is beneficial with websites/blogs receiving a lot of traffic, since only a small number of visitors will gonna click on your ads. The CTR (click through rate) is the number of clicks per hundred visitors. A normal optimized for ads website tend to receive about 3-4 % of CTR on an average. So earning from this method really needs a good amount of traffic. 
Some of the most widely used PPC programme are 

     ▌Google AdSense
     ▌Chitika
     ▌Clicksor


2. CPM Advertising. CPM is Cost per Mile. Instead of earning from the clicks you get on the ads, you get paid by the number of times the ads are shown to the visitors. Put it simple, the more pageviews you get, the more you earn, irrespective of any clicks. CPM advertisement is a sure shot mode of earning.

The rates are fixed per 1000 page views. That means if you get 10,000 visitors (page views) and the ad network is paying you a CPM of 1$, then you will make 10$. As you can see, for earning a small amount you need a lot of visitors. CPM advertising is best suitable for blogs with very high traffic. Getting a few hundred visitors will earn you penny for a day. The plus point is that you are sure of those pennies irrespective of clicks. 

There are various CPM advertising networks like

     ▌Casale Media 
     ▌Clicksor
     ▌BurstMedia 
     ▌Tribal Fusion
     ▌Value Click media. 

Some of these have minimum requirements. You can have a look on them by visiting their websites. 


3.  In-Text Ads. In-Texts-ads are contextual advertisements where keywords from your posts are selected and an advertisement is connected to it. The keywords are double underlined or dotted, and when a visitors hovers mouse on those keywords, the advertisement is pop up-ed. Here the payment is usually through cost per mile. The benefit of In-text advertising is that they don't take any space on your blog and normally do not lower your site speed. 

The two most widely used In-Text Ads schemes are

     ▌Infolinks
     ▌Kontera 


4. Affiliate Marketing. With this kind of advertisement, you earn commission from each sale that is done through your referral link. You write reviews about products and when some one buys any product through your referral, they pay you a commission. 

     Lets say a network pays you a commission of 5%. If someone buys a thing with cost price Rs 100,000, you will make Rs 5000. That's a lot of amount to earn from CPC and CPM ads.

Affiliate marketing is favourite among some of the blogger since chances of earning much more is higher. However, setting up a fan base, reviewing products, and compelling people to buy a product is a hectic task. 
Some of the affiliate Marketing networks are 

     ▌ClickBank
     ▌AffiliateWindow
     ▌Commission Junction
     ▌Amazon


5. Selling ads spaces on your blog. Selling ad spaces on your blog to display advertising banners is a good way of monetizing blogs. This is a profitable thing, since all the money comes to you and no middle person/ company takes a part of your income. The interested advertisers contacts you, a deal is done and you are paid for banners you display on your blog. These can be CPC banners or CPM banners depending upon the advertisers choice. 

You can still go to third party for managing of Selling-buying ads so that you don't have to deal with the complexities. However, then the third party will eat up a part of your income. 

The major advantage is that you have the option of deciding the minimum rates for the ads you will show on your blog. 


Do you use any other method to monetize your blog? Feel free to share it to the readers of this blog. Time to make some money. 


mb.
2013, By: Seo Master

seo Coming soon: Videos from Google I/O 2010 sessions 2013

Seo Master present to you: If you missed any sessions at Google I/O, we’re happy to let you know that beginning tomorrow (Tuesday June 1), videos and slides from all I/O sessions will start going live on code.google.com/io and the GoogleDevelopers YouTube channel.

We’ll be releasing videos by session track per the schedule below. We don’t have specific times to announce, but note that they’ll go live during PDT business hours:
  • Tues June 1: App Engine, GWT
  • Wed June 2: Enterprise, Android
  • Thurs June 3: Google Chrome, Social Web
  • Fri June 4: Tech Talks, Fireside Chats
  • Mon June 7: Geo, Google APIs, Google Wave
As each set of videos goes live, we’ll post updates on @googleio and Buzz. Thanks for your patience thus far. Stay tuned!

Posted by Christine Tsai, Google I/O Team
2013, By: Seo Master

seo How to Successful Lunch a new Web site 2013

Seo Master present to you:

Step 1:  Have a clear call to action and identify your main site objective


When developing a website there are many objectives that businesses want to achieve but it is important to identify one primary goal and establish the remainder as secondary aims.

Do you want to get a user to sign up to a newsletter? Become a member? Book a training session or trip? Or make an online purchase? Once you have identified the primary goal you can create a call to action strategy that will assist in achieving this objective.

Your call to action strategy can be communicated through;
  • Links
  • News feeds
  • Banner and button advertising
  • Releasing information from an intranet area in return for a user meeting an objective
  • Subscription to RSS feeds
  • Form maker

What if my site objectives change over time? Business objectives should change and develop over time so it’s important that you choose a Content Management System (CMS) that allows you to easily and affordably make changes to your site to fit with your changing website objectives.

Step 2: Have a professional, modern look and feel that allows for easy site navigation


Studies have estimated that the average consumer is exposed to up to 3000 marketing messages per day, as consumers are bombarded with advertising they have become experts at filtering out the irrelevant and identifying products and companies to investigate further. 

Once a potential customer has started to research online it is critical that your website reflects the professional nature that you conduct you offline business in. Having a site that is built on old technology with out of date design will be a deterrent to anyone looking to do business with you. 

Along with having a professional look and feel, navigation is one of the main factors in decreasing bounce rate and increasing average time spent on a site.  If a visitor can find the information that they are looking for then they will navigate past the homepage, properly designed navigation will then assist the visitor in finding other valued information and also increasing the average time spent on the site.

Key navigational points include;

  •      Use graphical navigation
  •      Generate a site tree
  •      Keep navigation consistent
  •      Ensure navigation is clear and easy to understand
  •      Use bread crumb navigation

Step 3: Constantly update, develop and edit the site


One of the fastest ways for your website to lose creditability online is to be obviously out of date, promoting a past event, reviewing an old product or updating users on old news. Out of date content is not only unappealing to users but Google search results will rank updated sites above sites that have stagnant content. Updating content will also increase your repeat visitor numbers as people return to discover new content and your RSS feed subscribers automatically receive updates.

Updating a website is different for every business in each industry but here are a couple of guidelines to follow;

  •      Post all relevant business news
  •      Keep a blog
  •      Use a CMS that can automatically remove past events
  •      Don’t update until you have solid content
  •      Review entire site content every 6 months
  •      Use a CMS that produces a content activity report
  •      Avoid changing the visual navigation too often

Step 4: Encourage user interaction


One of the major differentiators of the internet to traditional forms of media is that it allows for interaction with a user and as technology advances there are now more ways than ever to get the viewer involved. The major benefit is an increase in customer loyalty, a rise in repeat visits and a better understanding of your customer that allows you to increase relevance by tailoring future correspondence.

There are a number of tools that you can use to generate user interaction but an absolute must is the form maker tool, this is managed through the CMS and allows you to create a form that can request information on any page; for example;

You run an eCommerce site that sells books – you could place form that reads “Can’t find the book you are looking for? Enter your details along with the book and we’ll find it for you”, this will encourage users to begin communicating with you and stop them from sourcing the book elsewhere.

The amount of uses for this tool is infinite and that is why it’s our number one tool for encouraging user interaction. Other technology that can be used includes;

  •      Guest books
  •      Blogs
  •      Forums
  •      Polls and quizzes
  •      Notice boards
  •      Video content
  •      RSS feeds
  •      Social bookmarking

Step 5: Create original, keyword rich and relevant content


Taking the time to create original, keyword rich and relevant content is by far the most consuming aspect of a website development project but also the most important. Content is the life blood of any business site and with so many businesses gravitating toward the web it is becoming one of the greatest differentiators. Creating high quality content takes a lot of time and energy, spreading the task over time and throughout an office will help increase the quality of content and allow the writers to cover off all relevant topics, here are some tips to creating original, meaningful and targeted content.


  • Tailor a specific message for different landing pages
  • Focus on your sites main objective and include a relevant call to action
  • Use images to support your text, studies show that visitors are drawn to pictures first
  • Include testimonials and case studies
  • Make sure that you have enough content to keep the viewer interested
Writing quality keyword content

Choosing the correct keywords to structure your content around is vital to achieving a good search engine results. Performing a Google search will give you an understanding of what your competitors are doing and will help you establish a set of relevant keywords. Another useful tool is the Google Keyword tool; this will give you an idea of the amount of searches being performed for different keywords, other tips for writing quality keyword content include;

  •      Use your keyword in your post or article title
  •      Add your keywords several times throughout the content
  •      Bold or use italics  with your keywords
  •      Percentage of keywords to content should be between 2.5 % to 4 %

Step 6: Link your offline activities to your business website


One of the biggest hurdles to having a successful website is finding cost effective ways to drive traffic to the site. Many companies look solely to online to deliver this traffic and often forget that they have a huge captive audience interacting with them every day, their existing customers!  Branding your web address across all marketing material is an obvious start but this can be taken a lot further!
For example offering discounts for ordering online;
A café with a busy lunch time trade could appeal to existing customers to; “order online and receive a free coffee”. This has a number of benefits one being that it opens up your café to an entire office and decreases the lunch time rush, some other examples include;

  •      Branding staff t-shirts with the web address
  •      Print stickers to post the address on all collateral
  •      Having online only promotions
  •      Having online only deals
  •      Posting photos of customers and events on the site
  •      Running competitions where you sign up online

Utilising all aspects of your business to work in conjunction with the website will assist in driving traffic to the site. Self marketing and promotion is a vital aspect of this and along with other marketing initiatives will ensure that your business website from Online Now becomes a pivotal part of your businesses success.

     Step 7: Understand your customer’s online behavior


It’s important to understand your potential and existing customer’s online behavior to tailor you content, calls to action and website navigation. This will help you  to generate best results and achieve your website goals.

One of the most effective tools in understanding your customer’s online behavior is accurate website statistics; these tell you what keywords visitors used to find your site, where they exited your site and how long they spend browsing. Close analysis of competitor’s websites will also highlight areas within your site that require attention and by utilising modern website technology such as guest books or polls to simply ask users about their preferences you can start to understand your customer’s online behavior. 

A Foster Research survey found that only 23% of businesses improve their websites by making use of online data associated with how customers use their website, this figure is very low and the alarming fact is that many businesses aren’t making improvements to their site after it has been deployed. A website is a work in progress, you must be on a platform that allows for free editing and content changes and constantly be asking yourself;

  •      What’s a typical visitor to my site doing?
  •      How are they finding us?
  •      What calls to action are the most successful?
  •      Where are they exiting our site?
  •      What are visitors telling me about the site?
  •      What channels deliver visitors that help us achieve our site objectives?
  •      What changes can we make to appeal to the typical consumer?

Conclusion


These are just a few steps that will help you create a web presence that delivers real results, it’s important to plan your website development thoroughly and we hope that this document helps you with the preparation process. Creating a successful web presence is an ongoing commitment and finding a technology and design partner that will assist with affordable solutions is vital, please contact us for further information on how we can assist you develop an exciting, affordable business website today.
2013, By: Seo Master

seo Free Download Emulator PS2 Pcsx2 9.8 + Full BIOS 2013

Seo Master present to you:
Kalian tau (Playstation 2) kan? Nah Kali ini Seo-Xp Akan memberikan Software Gratis dan 100%Work Yaitu Pcsx 9.8 Bersama Biosnya.
Memang sih sudah ada Pcsx yang 9.0 dan 10.0 tetapi terlalu ribet untuk menggunakannya dan terlalu sulit mengkonfigurasinya beda sama dengan Pcsx2 9.8 yang ga ribet.
Pcsx2 9.8 saya gabungkan dengan Pcsx2 9.5 dan Pcsx2 9.6 dengan cara di edit Pluginnya Dengan Biosnya dan Jadilah Pcsx2 9.8

Pcsx adalah software yang bisa digunakan untuk bermain Game PS1 dan PS2, tetapi yang banyak dan susah dicari adalah PCSX 2 untuk bermain di PC maupun di Laptop, Sebab di Playstation 2 itu banyak game game yang seru, menantang dan heboh jadi saya Share deh..
Software ini Sangat langka dan susah dicari, Pcsx2 9.8 ini bisa memainkan game game yang bergrafik besar Termasuk Naruto Ultimate Ninja 5, Resident Evil 4, Final Fantasi XII, Burnout 4, dan lain lain..


Cara Menggunakannya :

1. Download Softwarenya Disini (Hanya 19MB)
2. Kemudian Extrack rarnya (Tanpa Password)
3. Double Klik Programnya yang bernama "pcsx2-0.9.8-r4600-setup.exe"
4. Klik Next (Jangan ada yang dirubah)
5. Klik Instal (Tunggu Beberapa Menit sampai Instalasi Berhasil)
6. Klik Close Untuk Menyelesaikan Instalasi
7. Buka Programnya Double Klik (Lihat Di Desktop)
8. Setelah Dibuka akan muncul Tab Baru di PCSX2 9.8, Klik Apply terus Klik import
9. Jika muncul Seperti Gambar di bawah jangan coba coba di ubah semuanya sudah saya atur, Klik Saja Next
10. Kemudian Unceklist "Use Default Setting" kemudian cari "Browse" Dimana kalian simpan BIOSnya.
11. Kemudian Pilihlah Bios yang "USA v02.00(14/06/2004) Console"
12. Kemudian Masukan Cd/Dvd Playstation 2nya dan Pilihlah Menu "System" kemudian pilihlah "Boot CDVD (Full)
 13. Selamat Bermain


Semoga Bermanfaat Artikel sama Softwarenya.
Jika Software mengalami eror atau apa, komen ajah ntar saya kasih tau info selanjutnya.2013, By: Seo Master

seo Create A Rollover Image Effect (change image on mouseover) 2013

Seo Master present to you: The Rollover effect is one in which an image web object changes (swaps itself) on mouse over to another web object (called rollovers) and reverts back to the original image on mouse out. Rollover images are preloaded into the page when it is loading, this ensures that the rollovers are displayed quickly. The onMouseOver and onMouseOut attributes of the link tag are used to make this functional.

Demo:  Place your mouse over the image below to see its rollover effect


Making Rollover Effect Image

You have the following code:

<a href="URL ADDRESS"><img src="URL OF THE FIRST IMAGE GOES HERE" onmouseover="this.src='URL OF THE SECOND IMAGE GOES HERE'" onmouseout="this.src='URL OF THE FIRST IMAGE GOES HERE'" /></a>

Change the colored texts as it follows:

1. URL ADDRESS

This is the address where somebody will be sent when clicks on the image.
Example, my blog address: http://www.www.matrixar.com

2. URL OF THE FIRST IMAGE GOES HERE

Replace the orange text (two times) with the URL address of the image which will appear before you hover over it.

3. URL OF THE SECOND IMAGE GOES HERE
Replace the text in blue with the url of  the image that will appear when the cursor hovers over it.

Now you can paste your image inside a blog gadget, going to Layout > click on Add a Gadget link (right side) > Select HTML/JavaScript from the pop-up window, then add it to your sidebar.

You can also add it inside your post by going to New Post > Switch to HTML tab and then paste the code in the empty box.

That's it. Enjoy ;)

2013, By: Seo Master

seo How to Backup/Restore template in new blogger interface? 2013

Seo Master present to you:
Backup restore new Blogger Template easily
Here i'm saying about an important topic that i had posted early " How to Backup/Restore Blogger Template? ". But i'm going to show you How to Backup/Restore  Blogger Template in New Blogger Template . Now a days Blogger default interface is Upgraded New Blogger Interface. Backup/Restore Template is so important,So don't take this as a silly matter.
Read Following see How to backup template in New Blogger Interface..



How to Backup/Restore Template

  • Go to Blogger Account
  • Select Template [as shown in fig.]
Backup restore new Blogger Template easilyBackup restore new Blogger Template easily
  • Click on the Button Backup/Restore  in Left top .
  •  A box appears [as shown in fig.]

Backup restore new Blogger Template easily
  • As shown in the above fig. 
  • Click on Download Full Template to download Template.Save it
  • Click on the Browse to Restore the early downloaded Template.
  • That's all ..Enjoy with us...








Check out other Blogger Tricks HERE and Blogger jquery Widget Generators HERE

2013, By: Seo Master

seo 5 Data Backup & Disaster Recovery Tips 2013

Seo Master present to you:

Backup your files on discs!
Backup your files on discs and be sure to store them in a secure location off-site.
Whether you own a large corporation or run a small business from home, it is essential that you are aware of the Importance of data backup and disaster recovery. Unfortunately you can never predict when disaster is going to strike in the work place. A disaster can be anything from system failure, to damage caused by a flood, fire or earthquake. Many businesses that experience a disaster never fully recover. Follow our simple tips below to ensure that your business does not become one of them.

1.) Primary back-up solutions:

Your customer database is one of your most valuable assets. Without it your business may not be able to function. This is why it is essential to make back-up copies of your database as well as other important files and information. Back-up copies can be made on disks, USB sticks and external hard drives. Understandably many business owners are wary of copies being made, especially of confidential data, so it is important that these copies are stored in a secure location off-site.

2.) Secondary back-up solutions:

Larger businesses will be able to store back-up copies of their files in an off-site data centre, but this is not an affordable option for many small to medium sized businesses. Instead why not Store your files on the cloud? This virtual form of storage, known as cloud computing, enables businesses to upload their files to a safe place on the internet. These files can be accessed remotely using a username and password.

Cloud computing is an affordable solution for small to medium sized businesses. Shop around to find the host offering the best price and be sure to check their terms and conditions. Using cloud storage will give you the peace of mind knowing that your files are safe, even if your physical IT infrastructure has been damaged.

3.) Use a virtual server:

A virtual server is capable of hosting a replica of your physical environment. It can be accessed remotely and often works out much cheaper than having a physical back-up server. If something unfortunate has happened to your workplace, you can simply access the virtual server within minutes from an off-site location.

4.) Create a data retention policy:

All businesses should have a data retention policy in place. This policy should inform your employees of the importance of backing up their data. It should tell them what data they need to back up, when they should do it and how it needs to be done. Business owners should schedule regular back-up sessions and appoint a member of their team to oversee it. If you fail to teach your staff the importance of backing up data, you may find that you are left with out of date copies of your files, which will not be of any worth to your business in the event of a disaster.

External hard drives are great for backing-up
External hard drives are great for backing-up data but it is essential that they are kept in a secure location, especially if they contain confidential data.

5.) Test your plan:

It is important to create a disaster and recovery plan that is clear, concise and easy for your staff to follow. A step-by-step guide is always useful. Appoint a leader to oversee the whole procedure as you may be busy doing other things like contacting your insurance company.

We cannot stress enough how important it is to regularly test your plan. It would be no good to find out that your back-up copies do not work, or that you cannot gain access to your virtual server in the middle of a disaster. The more you test your plan, the less likely you are to face problems recovering your data, should disaster strike your workplace.

The key to successful data back-up and disaster recovery planning is to always plan for the worst. It is much better to spend time and money preparing for a disaster than to find that you are left with no resources to run your business if something unfortunate happens.



Author Bio:
Written by SAS London, digital agency based in the United Kingdom.

Image credits: bobbigmac&miss karen
2013, By: Seo Master

seo Few Most Popular Online Bmx Games 2013

Seo Master present to you:

Few Most Popular Online Bmx Games

Online gaming industry has been on a roll recently. Millions of games have emerged on the surface of internet and thousands are adding up daily. This immense addition is because of the massive demand of online gaming that has emerged. Due to the advent of fast internet connections and high-end graphics cards, it has become possible to play high graphic games online without having to install anything in your PC and waste your disk space that much. Same goes for the industry of BMX Games Online, more and more companies are launching various kinds of BMX games due to its high demand in online gaming industry.

Most of the BMX games you will find on web will have high-end graphics and fancy background music being used in them.

Few of the most famous Online BMX games are:

  • Alex Trax
  • Extreme
  • Park
  • Ramp
  • Tricks
  • Street Ride
  • BMX Boy
  • Ghost
  • BMX Master
  • Pro-Style
  • Stunts
  • BMX Back Flips
BMX Street Ride is considered as best of all of them, with a very high-end graphics and detailed instructions for beginners on how to play and master BMX. Games like BMX Street Ride has made it very easy for beginners to learn the BMX riding and master the tricks and stunts, most of the beginners prefer to play the Freestyle BMX ride in this game which makes it a very good learning experience for beginners and can be used as an effective training tool for even experienced Cyclists.

BMX Master Game is one another popular BMX game online, this game has a lot more professional look and provides cooler and sophisticated features, such as you can conduct a championship in this game which make the whole BMX gaming a lot more fun and interactive. Furthermore, if you are a cycling enthusiast, who likes to perform cool stunts, than this game would be the perfect choice as it has a huge library of tricks and stunts to perform.

Similarly, BMX Pro Style has very impressive features as well, which makes it a great choice for both BMX beginners and experts. You can try most of the real-world tricks and scenarios in this game without having to actually put your body on the line and face the risk of an injury. This game has a very simple learning curve, and within a day or two you would be able to play it like an expert. Amazing back flips and wheelies are the best attraction for this game which makes it liked passionately among young cyclists.

Another game that has a very good following is BMX Park, which is popular because of having very cool backgrounds and locations; its graphics is also very high-end and makes you feel as if you are riding the bike in real world.

Above mentioned are just few of the many popular BMX Games online. In order to choose the right game to play you would have to find out your exact requirements and preferences and then select the most appropriate one.




Author Bio:
Eric is Hardware and Networking Technician who loves to write on the Latest in Gaming Technology. In his Free Time he loves to play BMX Bike Games.
2013, By: Seo Master

seo GSA Search Engine Ranker Backlink Keyword Tool Review Increase Page Rank Faster Cheaper 2013

Seo Master present to you:

GSA Search Engine Ranker Backlink Keyword Tool Review Increase Page Rank Faster Cheaper


Here’s some videos for GSA Search Engine Ranker Part - 1




GSA Search Engine Ranker Part - 2



GSA Search Engine Ranker Part - 3



GSA Search Engine Ranker Part - 4 



2013, By: Seo Master
Powered by Blogger.