Google Adsense, Ebay or Fiverr

Since i'm fancy of internet marketing, i always try to search for more information about it everyday. The definition of internet marketing could be say shortly is to earn money online. Many people have earn lots of money everyday without doing anything. That's the power of internet marketing. But it doesn't mean doing internet marketing is easy. There are many many people give up in the middle way when they don't see there results immediately. I have been a few years learned about it and find out many great things. Here i show you the most popular way that many people are doing in the field of internet marketing and also i'm doing this.


1. Sell online
 

- Ebay.com Ebay is the most popular website to shop online. In the internet age, many people can buy products from all over the world on there hand. Because ebay offer this service. If you want to earn money on ebay, it mean you need to sell something online. Just imagine that run a clothes shop in the supermarket, so your shops need to have many kinds of cloth to sell for the buyers. In Ebay, it's so easy since you just need to list your products and once there are some orders, you can ship your products to them depending on the shipping price. Selling products on ebay is a great thing, but i have never tried it due to the shipping complexion. I prefer to sell online service because it's easy and no shipping requirement. So i can money when my services are sold.
 

- Fiverr.com
As many people found ebay has lots of competitors and also many strict rules, they come to fiverr.com. fiverr.com require sellers to sell any products or service only 5 dollars. The concepts is pretty similar to ebay since there is a feedback after buyers buy your products. Most sellers prefer to sell the online service than products because five dollars much not fit to such an expensive product as mobile phone. An example of fiverr service you can see the links below.
http://fiverr.com/mandulis/write-top-quality-content-for-your-blog-or-website-up-to-500-words
http://fiverr.com/shizaru/take-3-pictures-of-me-promoting-your-message-fansign-website-and-anything-you-like
http://fiverr.com/johnchenhan/create-an-amazing-drawing-of-your-photo

2.Advertisement

Google adsense: If you are experienced of internet marketing, you may know lots of company that allow publishers to earn money by advertisement such as bidvertiser. But i trust only google adsenes since it's a very big company and also the shared revenue is appropriate. Google adsense is an advertisement that you put to appear on your own website or blog. So you can earn money when the visitors come to surf your site and click on the ads. i cannot say how much you can earn per click because it's depending on CTC( cost per click ) and number of visitors but for average i can earn from $0.30 to $0.80 per click.

The above tricks is just a briefly story. If you want to learn more, you can search on my teacher ( google ), otherwise, i'm welcome for all your comments and hope to get all your good ideas to develop myself in this field too.

Generation of internet marketing

Before i write this article, i always think what should i start to write first because there are lots of things i have learned from internet marketing. Since at first time i know the internet, i just wonder how the people have their own website? The answer had revealed from days by days when i try to search for more information through internet. Nowadays, these things are in my mind and everybody else also need to get more ideas on the internet for such stuffs. So what is it about? Yeah, it's not a long article, but just a simple one that you can be easy to understand. It's about internet marketing and not general marketing. As many people may understand the word marketing the social life and also through the university as the method to promote any products and increase selling for any company. Similarly, Internet marketing also needs lots of promotion before generating incomes. So what's the differences?
I show you a simple one is that general marketing needs the real action on the social while internet marketing only need to do online. The only thing require in internet marketing is internet. So you can learn many tricks online, and also practice online.

How should we criticize people about their mistakes


When you live in a group of people, you will face lots of problems even on study, living or financial. You will need to ask for more advice for what you should do to solve any problem. For me, my life has changed so much since i started university. That's because i have to live with lots of poeple from different place and most of them don't ever get along 100%. So i have to learn how to solve problems by myself. In the real situation of finding the solution, we cannot use the same method. As for a problem between one person to another person or an issue of one person to many people. I have to seperate them clearly between personal problem and general problem. Most personal pernal problem, i can only solve them face by face. That's because it should't be spoken out to public. Just imagine how your friend feel when you tell others his mistakes. By the way, i can find the solution by asking others people who have more experience about this related problem and take them to solve in private. Another problem that always occure in my living is when lots of people have different ideas and not to say them out instead of speaking behind. It's not really a good ways to deal with this because there's no effect if we just have ideas and say to our ownself. We should put the problems on the table and start to find the solution together. Some comments should be raised and problems should be solve step by steps by all people.

java script - how to prompt value

<script language="javascript">
var a,b,sum,multi;
a=prompt("enter a: ")
b=prompt("enter b: ")
sum=a+b;
multi=a*b;
document.write("sum="+sum);
document.write("multiply="+multi);


java script - how to send parameters from Form of HTML to java script

there are two ways that you can send parameters from for of HTML to java script
1.
java script
function count(form)
{
var a=eval(form.number1.value);
var b=eval(form.number2.value);
//get parameters from form
}
-HTML part
<input type=text name=number1>
<input type=text name=number2>
<input type=Button name=submit onClick=count(this.form)//you send the even on click to the function count at java script

2.
Java script
function count(number1,number2)// you get two parameters number1 and number2 directly from form
{
 var c;
c=a*b;
}
-HTML part
<input type=text name=number1>
<input type=text name=number2>
<input type=Button name=submit onClick=count(number1.value , number2.value)//you send two paremeters to the function count



 

Personal I.T blogs Copyright © 2011 -- Template created by O Pregador -- Powered by Blogger