Skip to main content

30 Top Earning Websites That Make A Lot Of Money Online



Rank     Website     Founders     Annual Revenue     $ Per Second

1     Amazon     Jeff Bezos     $107 Billion     $3392.94
2     Google     Larry Page, Sergey Brin     $74.98B     $2378.23
3     JD.com     Liu Qiangdong aka Richard Liu     $28B     $887.87
4     Facebook     Mark Zuckerberg, Eduardo Saverin, Andrew McCollum, Dustin Moskovitz, Chris Hughes     $17.93B     $568.56
5     Tencent     Ma Huateng     $12.89B     $408.74
6     Reuters     Paul Reuter     $12.6B     $399.54
7     Alibaba     Peng Lei, Jack Ma     $12.29B     $389.71
8     Paypal     Peter Thiel, Yu Pan, Luke Nosek, Elon Musk, Ken Howery, Max Levchin     $9.248B     $293.25
9     Priceline     Jesse Fink, Jay S. Walker, Scott Case     $9.22B     $292.36
10     eBay     Pierre Omidyar     $8.59B     $272.39
11     Expedia     Richard Barton     $6.67B     $211.50
12     Rakuten     Hiroshi Mikitani     $6.3B     $199.77
13     salesforce     Marc Benioff, Parker Harris     $5.37B     $170.28
14     Baidu     Robin Li, Eric Xu     $5.21B     $165.21
15     Yahoo     Jerry Yang, David Filo     $4.97B     $157.60
16     Groupon     Eric Lefkofsky, Brad Keywell, Andrew Mason     $3.1B     $98.30
17     LinkedIn     Reid Hoffman, Konstantin Guericke, Jean-Luc Valliant, Allen Blue, Eric Ly     $2.99B     $94.81
18     Twitter     Evan Williams, Noah glass, Jack Dorsey, Biz Stone     $2.22B     $70.40
19     NetEase     Ding Lei     $2.0B     $63.42
20     Sohu     Charles Zhang     $1.937B     $61.42
21     Overstock.com     Patrick M. Byrne     $1.66B     $52.64
22     NYTimes     Henry Jarvis Raymond, George Jones     $1.59B     $50.42
23     TripAdvisor     Langley Steinert, Stephen Kaufer     $1.5B     $47.56
24     ASOS.com     Nick Robertson, Quentin Griffiths     $1.4B     $44.39
25     Orbitz     Jeff Katz     $932 Million     $29.55
26     Yandex     Arkady Volozh, Arkady Borkovsky, Ilya Segalovich, Elena Kolmanovskaya     $900M     $28.54
27     airbnb     Joe Gebbia, Brian Chesky, Nathan Blecharczyk     $900M     $28.54
28     Stubhub     Eric H. Baker, Jeff Fluhr     $500M     $15.85
29     Blue Nile     Mark Vadon     $480M     $15.22
30     DropBox     Drew Houston and Arash Ferdowsi     $400M     $12.68

Comments

Popular posts from this blog

How can make a comment in php?

Comments: In PHP code, Comment is a line that is not executed but it helps to other to understand what are you doing in program and why you are using the comment line or it's work as a  reminder to know what you did in the program last time.      But there is many types of comment line like single line and multi line comments:  Example for Single line comment:   <?php     echo "<p>Hello my Friends</p>";   //This is a single-line comment   echo "<p>You will be a good please read all my blogs</p>"; ?> Here is another exaple of Multiple line comment "  example : <!--          --> <?php      <!--   echo "<p>Hello my Friends</p>";     echo "<p>Hello my Friends</p>"; -->        echo "<p>Hello my Friends</p>";     echo "<p>Hello my Friend...

Apache Hadoop

What Is Apache Hadoop? The Apache   Hadoop project develops open-source software for reliable, scalable, distributed computing. The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage. Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures. The project includes these modules: ·          Hadoop Common : The common utilities that support the other Hadoop modules. ·          Hadoop Distributed File System (HDFS) : A distributed file system that provides high-thr...

TWO DIMENSIONAL DATA IN TABULAOR FORM

Now Friends if your concept about array is cleared  so now  we can try to excute this 2D array in tabular form , that we clearly  understand  how data stores in an array  This is very easy concept I am sharing  to understand  how can we store the data in 2D array . For example:  <html > <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>2D array</title> </head> <body> <?php error_reporting(0); $x=array( data_1=>array('name'=>'suraj kumar', 'dob'=> '20.10.1980', 'age'=> '30','salary'=>50000), data_2=>array('name'=>'Amit kumar', 'dob'=> '22.1.1990', 'age'=> '30','salary'=>40000), data_3=>array('name'=>'pankaj kumar', 'dob'=> '02.12.1990', 'age'=> '30','salary'=>20000), data...