Posts

Showing posts from December, 2013

How Google Makes Money

Image
Hi Guys, Ever Heard of Google.What  a Foolish quesion isn't it?. Well You might Have Heard of Google as it is the Best Search Engine,Provides You With a Lot of Cool and Free Stuff Like Youtube,Gmail,Google Docs,Google Play & a lot more. So, Google is Providing You All These Things For FREE. Now ,The Question arises "How Does Google Make Money?" So Lets See How Google Really Makes Money.Unlike some Internet companies, Google has multiple ways of generating revenue beyond private investment or selling shares of its stock. Google uses three methods to partner with merchants and advertisers: Google Checkout, Google AdWords and Google AdSense 1)Google Checkout : Google Checkout is a service designed to make online purchases easier for both the consumer and the retailer. On the consumer end, users create a free Google Checkout account. Part of the account creation process includes entering a credit or debit card number, which Google stores in a secure database.

How to Make Circle Images using CSS

Image
Hi All Today I am going to teach you how to create circle images in your HTML pages. In Good old days we had websites that displayed all images in the shape of SQUARE or rectangles and now its time to change it and make something new and cool.So, Lets try making circular images in HTML pages. Well, You Might Have Seen that Websites like Google plus displays your profile image in a circular shape. Have you not felt this as cool. But, I Tell you This is Awesome and You can also Do the SAME So This Trick can be done by applying a small CSS Property called Border radius And for this you will have to use “ border-radius:50% 50% 50% 50%; “ See the Code Below <html> <head> <style> #circle { border-radius:50% 50% 50% 50%; width:300px; height:300px; } </style> </head> <body> <img src="skin-tone.jpg" id="circle"> </body> </html> Now Save the Abov