Showing posts with label Blog Tips. Show all posts
Showing posts with label Blog Tips. Show all posts

Thursday, September 8, 2016

Earn from Blogging

Being a blogger is one of the easiest ways to earn money from home.

Unlike any other job, if you are blogging from home. You don’t need to work 9-5.

You can work at any time of the day with ease.

But beware blogging takes time before it starts making money for you.

So I suggest you jump into this field slowly.

If you have a day job, don’t quit it. Start part-time with your blog.

Once it is on the stage where it is earning you more than your comfortable limits then it’s the best time to turn into full-time blogging mode. 

Suitable For -

People who love to write and would like to share their knowledge and expertise with the world. 

Skills Required - 

Ability to express knowledge in writing with simpler yet effective way. 

Time Required For Starting A Blog - 

The time required depends upon your level of expertise if you are an expert you can easily start a blog within few hours.

For a complete beginner, a day or two would be sufficient to be ready with the basic setup.

Tips -  

1. Start a blog about something in which you are really good at.

For e.g. If you love travelling and you have travelled a lot of places then start a travel blog.  

2. Always try to limit your blog to a particular domain. Don’t put content about multiple domains in one blog.

For e.g. Writing about recipe tips on a fashion blog.

Keep your blog specific to one domain only.

3. Using your experience and expertise, try to create a very unique and phenomenal content.

4. Try to give a lot of value to your readers. Write about something that will make a difference in your reader's’ life. 

5. Listen to the readers of your blog. Try to solve the problems they are facing. Always reply to their comments. Make them feel better.

6. Be committed to your blog. A blog is like a relationship. Give it some love and it will flourish. Ignore it and it will die a death.

There’s no point in being half-hearted in your blogging efforts - if you don’t care about it, why should anyone else?

7. Think about content, style, tone of voice, audience, etc.

Look at the people who already do what you’re planning to do.  Ask yourself the following questions:

How will I stand out from the crowd?What can I say that hasn’t already been said?What’s my unique selling point?Why do I want to do this?

8. Be professional in the way you handle and grow your blog.

Don’t criticize other brands, bloggers or people. Remember what goes around comes around.

You don’t want something you’ve said to come back and bite you one day.

9. Be open minded and willing to collaborate with other creatives. You’ll meet some fantastic and awe-inspiring people.

How To Monetize -

You can monetize your blog by recommending products or services related to your blog’s topic either by writing an informative article or placing banner ads on your blog’s relevant pages. 

You can earn handsome commissions when a person buys a product recommended by you.

Another way is you can place Google Adsense ads on your blog. More people click on your ads more money you will make

Thursday, November 3, 2011

How To Add Horizontal Dropdown Menu

If you want to add horizontal dropdown menu in template, follow the following blogger jquery tips. Recently I have written two posts about 3D horizontal linklist and Horizontal sub navigation. Before reading this, you may visit above posts. Lets start step by step on how to add horizontal drop down menu.

1.Login to your blogger dashboard--> layout- -> Edit HTML

2.Scroll down to where you see </head>tag .

3.Copy below code and paste it just before the </head> tag .

<script src='http://code.jquery.com/jquery-latest.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){

$(&quot;ul.subnav&quot;).parent().append(&quot;<span/>&quot;); //Only shows drop down trigger when js is enabled - Adds empty span tag after ul.subnav

$(&quot;ul.topnav li span&quot;).click(function() { //When trigger is clicked...

//Following events are applied to the subnav itself (moving subnav up and down)
$(this).parent().find(&quot;ul.subnav&quot;).slideDown(&#39;fast&#39;).show(); //Drop down the subnav on click

$(this).parent().hover(function() {
}, function(){
$(this).parent().find(&quot;ul.subnav&quot;).slideUp(&#39;slow&#39;); //When the mouse hovers out of the subnav, move it back up
});

//Following events are applied to the trigger (Hover events for the trigger)
}).hover(function() {
$(this).addClass(&quot;subhover&quot;); //On hover over, add class &quot;subhover&quot;
}, function(){ //On Hover Out
$(this).removeClass(&quot;subhover&quot;); //On hover out, remove class &quot;subhover&quot;
});

});
</script>
<style type='text/css'>
ul.topnav {
list-style: none;
padding: 0 20px;
margin: 0;
float: left;
width: 100%;
background: #222;
font-size: 1.2em;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiST9BfOmfw9eoQ_biFMW8pnyVipFq5QVrUuQst7TMEFVnCJKp6BmcG2C2kmSvleOblcx7YZhvzhUaOaRjyR4R4qK_IOeSXKFRdl0Gzu6Qy3vgC5SSZlSCbLsYje0UIhjKUIGftDXo7H_5x/) repeat-x;
}
ul.topnav li {
float: left;
margin: 0;
padding: 0 15px 0 0;
position: relative; /*--Declare X and Y axis base--*/
}
ul.topnav li a{
padding: 10px 5px;
color: #fff;
display: block;
text-decoration: none;
float: left;
}
ul.topnav li a:hover{
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjn3q4gSaLjsjfXaFhZGTsSFF9KycV49CDh3jKo6A3VE6PQ6sXb_6npnlglLsztPFP-MWOd8NQ1CgILJXHGBUSDecsuEgEtHz5xJWBbUQ50MGpccMrgW74jrKsf2lZjgQA5v-adev9TsM3Z/ ver.gif) no-repeat center top;
}
ul.topnav li span { /*--Drop down trigger styles--*/
width: 17px;
height: 35px;
float: left;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguW2DMct95BLHMyY8p-DyQ_cbF8CUWQBpIYaOPTQS_Lks-xqleSPnZF5cttL09fXdVQUUCPXg5HzTibpF33wKZ4jCnmahTgPUdZSbPW4ZgdghLt-vSCru3sOvWa78V1Cs8QO8gUKDdAbr2/) no-repeat center top;
}
ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
list-style: none;
position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
left: 0; top: 35px;
background: #333;
margin: 0; padding: 0;
display: none;
float: left;
width: 170px;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
border: 1px solid #111;
}
ul.topnav li ul.subnav li{
margin: 0; padding: 0;
border-top: 1px solid #252525; /*--Create bevel effect--*/
border-bottom: 1px solid #444; /*--Create bevel effect--*/
clear: both;
width: 170px;
}
html ul.topnav li ul.subnav li a {
float: left;
width: 145px;
background: #333 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-pRxaIZLSATgEOV8UaxxzxTBP_FrY65ICh9tcVdVoHam6e6-P4KNyUiYfsq-fiCLjFrEon5Wb2nwMR8FW16Ss8Qe1NFHlpKqiJyfWTwcDWBg1Nrl1ezk1-1e3KuvsEJjo0Stjb2zRyYuN/) no-repeat 10px center;
padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
background: #222 url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-pRxaIZLSATgEOV8UaxxzxTBP_FrY65ICh9tcVdVoHam6e6-P4KNyUiYfsq-fiCLjFrEon5Wb2nwMR8FW16Ss8Qe1NFHlpKqiJyfWTwcDWBg1Nrl1ezk1-1e3KuvsEJjo0Stjb2zRyYuN/) no-repeat 10px center;
}
#header img {
margin: 20px 0 10px;
}
</style>

Please host image here for free.


You can change width,height,color,... as your choice.


4.Now go to Layout-->Page Element and click on "Add a gadget".


5.Select "html/java script" and add the code given below and click save.
 

<ul class="topnav">

<li><a href="#">Home</a></li>
<li>
<a href="#">Tutorials</a>
<ul class="subnav">
<li><a href="#">HTML Tutorials</a></li>
<li><a href="#">CSS Tutorials</a></li>
<li><a href="#">PHP Tutorials</a></li>
<li><a href="#">SQL Tutorials</a></li>
<li><a href="#">jQuery Tutorials</a></li>
</ul>
</li>
<li>
<a href="#">Templates</a>
<ul class="subnav">
<li><a href="#">1 Column</a></li>
<li><a href="#">2 Column</a></li>
<li><a href="#">3 Column</a></li>
<li><a href="#">4 Column</a></li>
<li><a href="#">Premium</a></li>
<li><a href="#">Buy Now</a></li>
</ul>
</li>
<li><a href="#">About Us</a></li>
<li><a href="#">Advertise</a></li>
<li><a href="#">Subscribe</a></li>
<li><a href="#">Contact Us</a></li>

</ul>
 
I hope you like this. Happy blogging......
 

A beautiful jQuery Multi Tab Widget For Blogger

1.Login to your blogger dashboard--> layout- -> Edit HTML
2.Scroll down to where you see </head>tag .
3.Copy below code and paste it just before the </head> tag .

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js' type='text/javascript'/>

<script type='text/javascript'>
//<![CDATA[

eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(3(C){C.8={3o:{19:3(E,F,H){6 G=C.8[E].1h;21(6 D 3p H){G.1I[D]=G.1I[D]||[];G.1I[D].28([F,H[D]])}},2P:3(D,F,E){6 H=D.1I[F];5(!H){7}21(6 G=0;G<H.k;G++){5(D.b[H[G][0]]){H[G][1].1H(D.c,E)}}}},1l:{},n:3(D){5(C.8.1l[D]){7 C.8.1l[D]}6 E=C(\'<2a 3s="8-3r">\').j(D).n({3q:"3i",2g:"-2A",3g:"-2A",1r:"1w"}).22("2C");C.8.1l[D]=!!((!(/3I|3P/).12(E.n("3z"))||(/^[1-9]/).12(E.n("2T"))||(/^[1-9]/).12(E.n("2E"))||!(/2v/).12(E.n("3w"))||!(/3S|3C\\(0, 0, 0, 0\\)/).12(E.n("3D"))));3E{C("2C").2w(0).3B(E.2w(0))}3x(F){}7 C.8.1l[D]},3y:3(D){C(D).v("1p","2I").n("2q","2v")},3H:3(D){C(D).v("1p","3O").n("2q","")},3Q:3(G,E){6 D=/2g/.12(E||"2g")?"3N":"3M",F=e;5(G[D]>0){7 t}G[D]=1;F=G[D]>0?t:e;G[D]=0;7 F}};6 B=C.2e.W;C.2e.W=3(){C("*",2).19(2).z("W");7 B.1H(2,2M)};3 A(E,F,G){6 D=C[E][F].35||[];D=(1F D=="1E"?D.2h(/,?\\s+/):D);7(C.1j(G,D)!=-1)}C.1i=3(E,D){6 F=E.2h(".")[0];E=E.2h(".")[1];C.2e[E]=3(J){6 H=(1F J=="1E"),I=2D.1h.3J.2P(2M,1);5(H&&A(F,E,J)){6 G=C.i(2[0],E);7(G?G[J].1H(G,I):1n)}7 2.14(3(){6 K=C.i(2,E);5(H&&K&&C.3v(K[J])){K[J].1H(K,I)}o{5(!H){C.i(2,E,3e C[F][E](2,J))}}})};C[F][E]=3(I,H){6 G=2;2.15=E;2.2H=F+"-"+E;2.b=C.1A({},C.1i.1k,C[F][E].1k,H);2.c=C(I).u("1e."+E,3(L,J,K){7 G.1e(J,K)}).u("2j."+E,3(K,J){7 G.2j(J)}).u("W",3(){7 G.1b()});2.23()};C[F][E].1h=C.1A({},C.1i.1h,D)};C.1i.1h={23:3(){},1b:3(){2.c.1q(2.15)},2j:3(D){7 2.b[D]},1e:3(D,E){2.b[D]=E;5(D=="f"){2.c[E?"j":"r"](2.2H+"-f")}},1X:3(){2.1e("f",e)},1P:3(){2.1e("f",t)}};C.1i.1k={f:e};C.8.2J={3h:3(){6 D=2;2.c.u("3d."+2.15,3(E){7 D.2G(E)});5(C.x.13){2.2K=2.c.v("1p");2.c.v("1p","2I")}2.3c=e},38:3(){2.c.16("."+2.15);(C.x.13&&2.c.v("1p",2.2K))},2G:3(F){(2.V&&2.1o(F));2.1C=F;6 E=2,G=(F.39==1),D=(1F 2.b.25=="1E"?C(F.2f).2x().19(F.2f).y(2.b.25).k:e);5(!G||D||!2.2S(F)){7 t}2.1D=!2.b.26;5(!2.1D){2.3a=1x(3(){E.1D=t},2.b.26)}5(2.2m(F)&&2.1T(F)){2.V=(2.1U(F)!==e);5(!2.V){F.3b();7 t}}2.2n=3(H){7 E.2r(H)};2.2l=3(H){7 E.1o(H)};C(2N).u("2O."+2.15,2.2n).u("2t."+2.15,2.2l);7 e},2r:3(D){5(C.x.13&&!D.3j){7 2.1o(D)}5(2.V){2.1V(D);7 e}5(2.2m(D)&&2.1T(D)){2.V=(2.1U(2.1C,D)!==e);(2.V?2.1V(D):2.1o(D))}7!2.V},1o:3(D){C(2N).16("2O."+2.15,2.2n).16("2t."+2.15,2.2l);5(2.V){2.V=e;2.2u(D)}7 e},2m:3(D){7(29.3m(29.2z(2.1C.2L-D.2L),29.2z(2.1C.2s-D.2s))>=2.b.2F)},1T:3(D){7 2.1D},1U:3(D){},1V:3(D){},2u:3(D){},2S:3(D){7 t}};C.8.2J.1k={25:U,2F:1,26:0}})(27);(3(A){A.1i("8.4",{23:3(){2.b.Z+=".4";2.1m(t)},1e:3(B,C){5((/^d/).12(B)){2.1v(C)}o{2.b[B]=C;2.1m()}},k:3(){7 2.$4.k},1Q:3(B){7 B.2R&&B.2R.1g(/\\s/g,"2Q").1g(/[^A-4o-4x-9\\-2Q:\\.]/g,"")||2.b.2X+A.i(B)},8:3(C,B){7{b:2.b,4u:C,30:B,11:2.$4.11(C)}},1m:3(O){2.$l=A("1O:4p(a[p])",2.c);2.$4=2.$l.1G(3(){7 A("a",2)[0]});2.$h=A([]);6 P=2,D=2.b;2.$4.14(3(R,Q){5(Q.X&&Q.X.1g("#","")){P.$h=P.$h.19(Q.X)}o{5(A(Q).v("p")!="#"){A.i(Q,"p.4",Q.p);A.i(Q,"q.4",Q.p);6 T=P.1Q(Q);Q.p="#"+T;6 S=A("#"+T);5(!S.k){S=A(D.2d).v("1s",T).j(D.1u).4l(P.$h[R-1]||P.c);S.i("1b.4",t)}P.$h=P.$h.19(S)}o{D.f.28(R+1)}}});5(O){2.c.j(D.2b);2.$h.14(3(){6 Q=A(2);Q.j(D.1u)});5(D.d===1n){5(20.X){2.$4.14(3(S,Q){5(Q.X==20.X){D.d=S;5(A.x.13||A.x.43){6 R=A(20.X),T=R.v("1s");R.v("1s","");1x(3(){R.v("1s",T)},44)}4m(0,0);7 e}})}o{5(D.1c){6 J=46(A.1c("8-4"+A.i(P.c)),10);5(J&&P.$4[J]){D.d=J}}o{5(P.$l.y("."+D.m).k){D.d=P.$l.11(P.$l.y("."+D.m)[0])}}}}D.d=D.d===U||D.d!==1n?D.d:0;D.f=A.41(D.f.40(A.1G(2.$l.y("."+D.1a),3(R,Q){7 P.$l.11(R)}))).31();5(A.1j(D.d,D.f)!=-1){D.f.3V(A.1j(D.d,D.f),1)}2.$h.j(D.18);2.$l.r(D.m);5(D.d!==U){2.$h.w(D.d).1S().r(D.18);2.$l.w(D.d).j(D.m);6 K=3(){A(P.c).z("1K",[P.Y("1K"),P.8(P.$4[D.d],P.$h[D.d])],D.1S)};5(A.i(2.$4[D.d],"q.4")){2.q(D.d,K)}o{K()}}A(3U).u("3W",3(){P.$4.16(".4");P.$l=P.$4=P.$h=U})}21(6 G=0,N;N=2.$l[G];G++){A(N)[A.1j(G,D.f)!=-1&&!A(N).1f(D.m)?"j":"r"](D.1a)}5(D.17===e){2.$4.1q("17.4")}6 C,I,B={"3X-2E":0,1R:1},E="3Z";5(D.1d&&D.1d.3Y==2D){C=D.1d[0]||B,I=D.1d[1]||B}o{C=I=D.1d||B}6 H={1r:"",47:"",2T:""};5(!A.x.13){H.1W=""}3 M(R,Q,S){Q.2p(C,C.1R||E,3(){Q.j(D.18).n(H);5(A.x.13&&C.1W){Q[0].2B.y=""}5(S){L(R,S,Q)}})}3 L(R,S,Q){5(I===B){S.n("1r","1w")}S.2p(I,I.1R||E,3(){S.r(D.18).n(H);5(A.x.13&&I.1W){S[0].2B.y=""}A(P.c).z("1K",[P.Y("1K"),P.8(R,S[0])],D.1S)})}3 F(R,T,Q,S){T.j(D.m).4k().r(D.m);M(R,Q,S)}2.$4.16(".4").u(D.Z,3(){6 T=A(2).2x("1O:w(0)"),Q=P.$h.y(":4e"),S=A(2.X);5((T.1f(D.m)&&!D.1z)||T.1f(D.1a)||A(2).1f(D.1t)||A(P.c).z("2y",[P.Y("2y"),P.8(2,S[0])],D.1v)===e){2.1M();7 e}P.b.d=P.$4.11(2);5(D.1z){5(T.1f(D.m)){P.b.d=U;T.r(D.m);P.$h.1Y();M(2,Q);2.1M();7 e}o{5(!Q.k){P.$h.1Y();6 R=2;P.q(P.$4.11(2),3(){T.j(D.m).j(D.2c);L(R,S)});2.1M();7 e}}}5(D.1c){A.1c("8-4"+A.i(P.c),P.b.d,D.1c)}P.$h.1Y();5(S.k){6 R=2;P.q(P.$4.11(2),Q.k?3(){F(R,T,Q,S)}:3(){T.j(D.m);L(R,S)})}o{4b"27 4c 4d: 3n 49 4a."}5(A.x.13){2.1M()}7 e});5(!(/^24/).12(D.Z)){2.$4.u("24.4",3(){7 e})}},19:3(E,D,C){5(C==1n){C=2.$4.k}6 G=2.b;6 I=A(G.37.1g(/#\\{p\\}/g,E).1g(/#\\{1L\\}/g,D));I.i("1b.4",t);6 H=E.4i("#")==0?E.1g("#",""):2.1Q(A("a:4g-4h",I)[0]);6 F=A("#"+H);5(!F.k){F=A(G.2d).v("1s",H).j(G.18).i("1b.4",t)}F.j(G.1u);5(C>=2.$l.k){I.22(2.c);F.22(2.c[0].48)}o{I.36(2.$l[C]);F.36(2.$h[C])}G.f=A.1G(G.f,3(K,J){7 K>=C?++K:K});2.1m();5(2.$4.k==1){I.j(G.m);F.r(G.18);6 B=A.i(2.$4[0],"q.4");5(B){2.q(C,B)}}2.c.z("2Y",[2.Y("2Y"),2.8(2.$4[C],2.$h[C])],G.19)},W:3(B){6 D=2.b,E=2.$l.w(B).W(),C=2.$h.w(B).W();5(E.1f(D.m)&&2.$4.k>1){2.1v(B+(B+1<2.$4.k?1:-1))}D.f=A.1G(A.34(D.f,3(G,F){7 G!=B}),3(G,F){7 G>=B?--G:G});2.1m();2.c.z("2V",[2.Y("2V"),2.8(E.2k("a")[0],C[0])],D.W)},1X:3(B){6 C=2.b;5(A.1j(B,C.f)==-1){7}6 D=2.$l.w(B).r(C.1a);5(A.x.4n){D.n("1r","4t-1w");1x(3(){D.n("1r","1w")},0)}C.f=A.34(C.f,3(F,E){7 F!=B});2.c.z("33",[2.Y("33"),2.8(2.$4[B],2.$h[B])],C.1X)},1P:3(C){6 B=2,D=2.b;5(C!=D.d){2.$l.w(C).j(D.1a);D.f.28(C);D.f.31();2.c.z("32",[2.Y("32"),2.8(2.$4[C],2.$h[C])],D.1P)}},1v:3(B){5(1F B=="1E"){B=2.$4.11(2.$4.y("[p$="+B+"]")[0])}2.$4.w(B).4q(2.b.Z)},q:3(G,K){6 L=2,D=2.b,E=2.$4.w(G),J=E[0],H=K==1n||K===e,B=E.i("q.4");K=K||3(){};5(!B||!H&&A.i(J,"17.4")){K();7}6 M=3(N){6 O=A(N),P=O.2k("*:4s");7 P.k&&P.4v(":45(3R)")&&P||O};6 C=3(){L.$4.y("."+D.1t).r(D.1t).14(3(){5(D.1N){M(2).3l().1B(M(2).i("1L.4"))}});L.1y=U};5(D.1N){6 I=M(J).1B();M(J).3k("<2o></2o>").2k("2o").i("1L.4",I).1B(D.1N)}6 F=A.1A({},D.1J,{2U:B,2i:3(O,N){A(J.X).1B(O);C();5(D.17){A.i(J,"17.4",t)}A(L.c).z("2Z",[L.Y("2Z"),L.8(L.$4[G],L.$h[G])],D.q);D.1J.2i&&D.1J.2i(O,N);K()}});5(2.1y){2.1y.3f();C()}E.j(D.1t);1x(3(){L.1y=A.3u(F)},0)},2U:3(C,B){2.$4.w(C).1q("17.4").i("q.4",B)},1b:3(){6 B=2.b;2.c.16(".4").r(B.2b).1q("4");2.$4.14(3(){6 C=A.i(2,"p.4");5(C){2.p=C}6 D=A(2).16(".4");A.14(["p","q","17"],3(E,F){D.1q(F+".4")})});2.$l.19(2.$h).14(3(){5(A.i(2,"1b.4")){A(2).W()}o{A(2).r([B.m,B.2c,B.1a,B.1u,B.18].3G(" "))}})},Y:3(B){7 A.Z.3L({3t:B,2f:2.c[0]})}});A.8.4.1k={1z:e,Z:"24",f:[],1c:U,1N:"3F&#3A;",17:e,2X:"8-4-",1J:{},1d:U,37:\'<1O><a p="#{p}"><2W>#{1L}</2W></a></1O>\',2d:"<2a></2a>",2b:"8-4-3K",m:"8-4-d",2c:"8-4-1z",1a:"8-4-f",1u:"8-4-30",18:"8-4-3T",1t:"8-4-4w"};A.8.4.35="k";A.1A(A.8.4.1h,{1Z:U,4r:3(C,F){F=F||e;6 B=2,E=2.b.d;3 G(){B.1Z=42(3(){E=++E<B.$4.k?E:0;B.1v(E)},C)}3 D(H){5(!H||H.4j){4f(B.1Z)}}5(C){G();5(!F){2.$4.u(2.b.Z,D)}o{2.$4.u(2.b.Z,3(){D();E=B.b.d;G()})}}o{D();2.$4.16(2.b.Z,D)}}})})(27);',62,282,'||this|function|tabs|if|var|return|ui|||options|element|selected|false|disabled||panels|data|addClass|length|lis|selectedClass|css|else|href|load|removeClass||true|bind|attr|eq|browser|filter|triggerHandler|||||||||||||||||||||null|_mouseStarted|remove|hash|fakeEvent|event||index|test|msie|each|widgetName|unbind|cache|hideClass|add|disabledClass|destroy|cookie|fx|setData|hasClass|replace|prototype|widget|inArray|defaults|cssCache|tabify|undefined|mouseUp|unselectable|removeData|display|id|loadingClass|panelClass|select|block|setTimeout|xhr|unselect|extend|html|_mouseDownEvent|_mouseDelayMet|string|typeof|map|apply|plugins|ajaxOptions|tabsshow|label|blur|spinner|li|disable|tabId|duration|show|mouseDelayMet|mouseStart|mouseDrag|opacity|enable|stop|rotation|location|for|appendTo|init|click|cancel|delay|jQuery|push|Math|div|navClass|unselectClass|panelTemplate|fn|target|top|split|success|getData|find|_mouseUpDelegate|mouseDistanceMet|_mouseMoveDelegate|em|animate|MozUserSelect|mouseMove|pageY|mouseup|mouseStop|none|get|parents|tabsselect|abs|5000px|style|body|Array|width|distance|mouseDown|widgetBaseClass|on|mouse|_mouseUnselectable|pageX|arguments|document|mousemove|call|_|title|mouseCapture|height|url|tabsremove|span|idPrefix|tabsadd|tabsload|panel|sort|tabsdisable|tabsenable|grep|getter|insertBefore|tabTemplate|mouseDestroy|which|_mouseDelayTimer|preventDefault|started|mousedown|new|abort|left|mouseInit|absolute|button|wrapInner|parent|max|Mismatching|plugin|in|position|gen|class|type|ajax|isFunction|backgroundImage|catch|disableSelection|cursor|8230|removeChild|rgba|backgroundColor|try|Loading|join|enableSelection|auto|slice|nav|fix|scrollLeft|scrollTop|off|default|hasScroll|img|transparent|hide|window|splice|unload|min|constructor|normal|concat|unique|setInterval|opera|500|not|parseInt|overflow|parentNode|fragment|identifier|throw|UI|Tabs|visible|clearInterval|first|child|indexOf|clientX|siblings|insertAfter|scrollTo|safari|Za|has|trigger|rotate|last|inline|tab|is|loading|z0'.split('|'),0,{}))

//]]>
</script>

<script type='text/javascript'>
//<![CDATA[

$(document).ready(function() {
$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
$('#featuredvid > ul').tabs();
});

//]]>
</script>

<style type='text/css'>

.widget224 {
width: 350px;
margin: 20px;
padding: 10px;
background: #f3f1eb;
border: 1px solid #dedbd1;
margin-bottom: 15px;
}

.widget224 a {
color: #222;
text-decoration: none;
}

.widget224 a:hover {
color: #009;
text-decoration: underline;
}

.tabnav li {
display: inline;
list-style: none;
padding-right: 5px;
}

.tabnav li a {
text-decoration: none;
text-transform: uppercase;
color: #222;
font-weight: bold;
padding: 4px 6px;
outline: none;
}

.tabnav li a:hover, .tabnav li a:active, .tabnav li.ui-tabs-selected a {
background: #dedbd1;
color: #222;
text-decoration: none;
}

.tabdiv {
margin-top: 2px;
background: #fff;
border: 1px solid #dedbd1;
padding: 5px;
}

.tabdiv li {
list-style-image: url(&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgG2BKPvKhNe3BFaCfR1Rwnx0sbiaQ2di16EhdNUD6ZB7v2u7fyApvcnHdt3K1vZwNV9ECW50GGkhklZiD37bK8Piw4wCyLSI9gg75_RNgyZvrp9Qx4XHZRNATzn0UpxmHgLXK7ZLgAbLWC/&quot;);
margin-left: 20px;
}

.ui-tabs-hide {
display: none;
}
</style>

Change width,height,color,....


4.Now go to Layout-->Page Element and click on "Add a gadget".


5.Select "html/java script" and add the code given below and click save. 


<div id="tabvanilla" class="widget224">

<ul class="tabnav">
<li><a href="#recent">Recent</a></li>
<li><a href="#tutorial">Tutorial</a></li>
<li><a href="#template">Templates</a></li>
</ul>

<div id="recent" class="tabdiv">

<!--Start Tab 1 Content-->
<ul>
<li><a href="#">How To Add jQuery Tab View Widget To Blogger</a></li>
<li><a href="#">How To Add jQuery Horizontal Sub Navigation to Blogger</a></li>
<li><a href="#">How To Add jQuery 3D Horizontal Link List to Blogger</a></li>
<li><a href="#">How To Add jQuery?s hover() Method To Blogger</a></li>
<li><a href="#">How To Add jQuery Scroll To Top Button To Blogger</a></li>
<li><a href="#">How To Add Syntax Highlighter to Blogger</a></li>
<li><a href="#">How To Add MooTools Link Fading To Blogger</a></li>
</ul>
<!--End Tab 1 Content-->

</div>


<div id="tutorial" class="tabdiv">

<!--Start Tab 2 Content-->
<ul>
<li><a href="#">HTML Tutorials </a></li>
<li><a href="#">CSS Tutorials </a></li>
<li><a href="#">JAVA Script Tutorials </a></li>
<li><a href="#">PHP Tutorials </a></li>
<li><a href="#">SQL Tutorials </a></li>
<li><a href="#">DREAMWEAVER Tutorials </a></li>
<li><a href="#">JAVA Tutorials </a></li>
<li><a href="#">Flash Tutorials </a></li>
<li><a href="#">Photoshop Tutorials </a></li>
<li><a href="#">3D Max Tutorials </a></li>
<li><a href="#">MAYA Tutorials </a></li>

</ul>
<!--End Tab 2 Content-->


</div>

<div id="template" class="tabdiv">

<!--Start Tab 3 Content-->
<ul>
<li><a href="#">1 Column Blogger Templates</a></li>
<li><a href="#">2 Column Blogger Templates</a></li>
<li><a href="#">3 Column Blogger Templates</a></li>
<li><a href="#">4 Column Blogger Templates</a></li>
<li><a href="#">Premium Blogger Templates</a></li>
<li><a href="#">Magazine Style Blogger Templates</a></li>
<li><a href="#">Adsense Ready Blogger Templates</a></li>
<li><a href="#">Fixed Width Blogger Templates</a></li>
</ul>
<!--End Tab 3 Content-->

</div>

</div>
 
EnjoY 

How to Make Blog Mobile Phone Friendly


Now a days, embedded system is becoming popular to access the internet. Huge people use their mobile phones to visit websites because of high bandwidth speed. In my another post I have written on Traffic generation's tips which tells about 30 ways to give more visitors. But I didn't mention their about one way with mobile phone. If you don't make blog mobile phone friendly you will lose a lot of visitors.

To make your blog mobile friendly just follow the following easy steps: 



1)Sign into blogger.com account.

2)Go to Design -> Edit Html

3)Find out the following line of code: 

<b:include name="all-head-content" data="blog" />

4)Now paste the following code below that line 
 
<meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible" />
<b:if cond="data:blog.isMobile">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />
<b:else />
<meta name="viewport" content="width=1100" />
</b:if>
5)Save the changes.

You are done! It is easy and simple but very helpful for mobile readers 
to access blog from their mobile phones. Let me know your experience 
applying this mobile phone tips on your blog. 
 
 

Earn Money Online in Different Ways


There are many ways to make online money. If you search the web to know different ways to earn, you will find a lot of websites telling 101 easy and free ways.

I am writing this article not to tell the easiest but some effective and efficient ways to earn. Before starting I concede to readers that I don't know any way that could make one rich over a night. Rather I do believe, to become hero from zero one needs to work hard with full of energy, patience and enthusiasm. Let's have a bird view of this post. Here I have written about PPC, Affiliate Program, Freelancing very shortly. On each making money way , I have tried to focus on the following questions:

1)How much can be earned? 
2) How to start to earn? 
3) Time to spend each day? etc...
1)PPC Program: Pay Per Click(PPC) is an advertising program in which advertisers pay a fixed amount every time when one of the ads is clicked. You will find out some websites those give free ads to place it on your blog or website. Google Adsense, Chitika and Bidvertiser are the leading websites among them. Cost Per Click (CPC) amount varies from one to another. Usually Adsense or Chitika pay $0.11 for each click. Sometimes Adsense pays $10 for per click. CPC or CPM depends on many related issues which are not concerned in this post. Anyway, if you get thousands of visitors for your site than this way may help you to earn online hundreds of money each month.

2)Affiliate Program: Affiliate Marketing is a program in which business pay a fixed amount or a percentage for each visitor or customer bought an item of their products or you refer a new user/customer to sign up on their websites. For example Amazon offers affiliate program and it's referral rate is 4%. If visitor buys a product of $100 from your referral link, Amazon will pay you $4. Chitika rewards 10% of what of what your  referred publisher earns and pay $25 when your advertiser referral spends $100 for add campaign. To earn from affiliating program you need a blog or website, then find out the websites which offers affiliate program and before starting it I recommend you to read their program terms and conditions.
 3)Freelancing: Sell your expertise on marketplace. This is the fastest way to make money online without investment. Elance.com , vworker.com are websites that match buyers and sellers of internet provided services. Normally buyers offer projects on different fields such as computer programming, website design, graphic design, writing, copywriting, consulting, translating etc. You can earn $100 each day or even more from home.Since the projects are open for all you have to bid with proposal explaining the way to solve the problem.

List of popular networks: 



Wednesday, November 2, 2011

How to Add Email Subscription

I have already described how to burn a Blogger Feed and redirect it to FeedBurner Feed. Today I will show how to add FeedBurner Email to Blogger Blog. Email Subscribtions is a service of FeedBurner for publishers to offer their subscribers to receive latest content of blogs or sites via daily email. To add FeedBurner Email Subscriptions to your blog:

Step by Step Email Subscription

 

Step 1: Login into your FeedBurner account.

Step 2: Select your blog in which you will add Email Subscriptions . Now Click on Publicize tab. Then select Email Subscriptions.


Step 3: Now Click on Activate Button.



Step 4: Then you will get code . Copy and paste the code in your blog where ever you like.  



How To Add MARQUEE TEXT-2

Move Text From Up to Down

 <marquee direction="down">Add your text here....</marquee>

 

Add your text here....

To add a background color use this code : 

<marquee direction="right" width="100%" style="background:#EC4F52"><font color="white">Add your text here...</font></marquee>
It will look like this :
Add your text here...                                                                                                                                

How To Add MARQUEE TEXT

Today in this tutorial, I will expose a simple Blogger tricks that will explain how to add moving text or text animation in post. You can move text from left to right ,right to left, up to down or down to up. To add a animated text you just need to use <marquee> tag.  It is also called marquee effect. Lets begin with simple examples.
Keep your animated text between marquee tag.
<marquee>Add your text here....</marquee>

Animate Text From Left to Right

<marquee direction="left">Add your text here....</marquee>
This will show as this :


Add your text here....

Marquee Text From right to left

You can change the direction of the text by using this tag in the beginning :
<marquee direction="right">Add your text here....</marquee>


Add your text here....


Move Text From Down to up

 <marquee direction="up">Add your text here....</marquee>


Add your text here....

 

How to Add Animanted Link or JQuery Link Nudging

Many visitors want to know how to add animated Link in the blogger or website. This tutorial will describe how to use JQuery for Link Nudging.  You can find a demo here.

Instruction To add Animated JQuery Link

First of all you have to Add JQuery in Blogger or Website.
1.Login to your blogger dashboard--> layout- -> Edit HTML
2.Scroll down to where you see </head>tag .
<script type='text/javascript'>

$(document).ready(function() 
  
{ 

  
slide(&quot;#sliding-navigation&quot;, 25, 15, 150, .8); 

  
}); 

  
  
function slide(navigation_id, pad_out, pad_in, time, multiplier) 

  
{ 

  
// creates the target paths 

  
var list_elements = navigation_id + &quot; li.sliding-element&quot;; 

  
var link_elements = list_elements + &quot; a&quot;; 

  
  
// initiates the timer used for the sliding animation 

  
var timer = 0; 

  
  
// creates the slide animation for all list elements 

  
$(list_elements).each(function(i) 

  
{ 

  
  // margin left = - ([width of element] + [total vertical padding of element]) 

  
  $(this).css(&quot;margin-left&quot;,&quot;-180px&quot;); 

  
  // updates timer 

  
  timer = (timer*multiplier + time); 

  
  $(this).animate({ marginLeft: &quot;0&quot; }, timer); 

  
  $(this).animate({ marginLeft: &quot;15px&quot; }, timer); 

  
  $(this).animate({ marginLeft: &quot;0&quot; }, timer); 

  
}); 

  
  
// creates the hover-slide effect for all link elements    
$(link_elements).each(function(i) 

  
{ 

  
  $(this).hover( 

  
  function() 

  
  { 

  
   $(this).animate({ paddingLeft: pad_out }, 150); 

  
  },   
  function() 

  
  { 

  
   $(this).animate({ paddingLeft: pad_in }, 150); 

  
  }); 

  
}); 

  
} 

  
</script> 

  
<script type='text/javascript'> 

  
if (window.jstiming) window.jstiming.load.tick(&#39;headEnd&#39;); 

  
</script> 
 
3.Copy below code and paste it just before the </head> tag. 


6.Now save your template.


7.Go to Layout-->Page Elements and click on "Add a gadget". 8.Select "html/java script" and add the code given below and click save.

<ul id="sliding-navigation"> 

  
      
<li class="sliding-element"><a href="#">Link 1</a></li> 

  
      
<li class="sliding-element"><a href="#">Link 2</a></li> 

  
      
<li class="sliding-element"><a href="#">Link 3</a></li> 

  
      
<li class="sliding-element"><a href="#">Link 4</a></li> 

  
      
<li class="sliding-element"><a href="#">Link 5</a></li> 

  


  
<li class="sliding-element"><a href="#">Link 6</a></li> 

  


  
<li class="sliding-element"><a href="#">Link 7</a></li> 

  


  
<li class="sliding-element"><a href="#">Link 8</a></li> 

  


  
<li class="sliding-element"><a href="#">Link 9</a></li> 

  


  
<li class="sliding-element"><a href="#">Link 10</a></li> 

  
  
</ul>
 
 

How to add YouTube Video

For many reasons Blogger can embed Video in posts. A post about funny things can. If you want to insert your own video, then sign up for a YouTube account. Then upload video in your account and get the embed code. You will get this code at right upper corner.
Suppose you want to add this video in your post. http://www.youtube.com/watch?v=FntX6JPqojg
Get the embed code.

The code look like below. You can choose video width and height as your choice.
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/FntX6JPqojg&hl=en&fs=1&">
</param><param name="allowFullScreen" value="true">
</param><param name="allowscriptaccess" value="always">
</param>
<embed src="http://www.youtube.com/v/FntX6JPqojg&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344">
</embed></object>
Now you have the embed code of your blog. Go to your "edit post" or "New Post" option in which you will insert the video. Change from "Compose" mode to "Edit HTML" mode. Paste the HTML code in your preferable place. Publish the Post. You are done now. Above code create the following video in Blogger post.




How to put Adsense code in middle of blogger post

Normally each visitor visits your blog to read post. So if you put adsense in the middle or anywhere of post, ads can get clicked more frequently. It will  help to earn more $$.



To put adsense code in the blog post, it is better parse the code first.So parse it using AdParser.


After parsing,your ad code should look like this.


Log in to your dashboard--> layout- -> Edit HTML

Check on "Expand Widget Templates"
Now find out the following tag:-
<data:post.body/>

Now replace above code with below code.
<div expr:id='"aim1" + data:post.id'></div>
       <div style="clear:both; margin:10px 0">
<!-- Your AdSense code here -->
</div>
<div expr:id='"aim2" + data:post.id'>
<data:post.body/>
</div>
<script type="text/javascript">
var obj0=document.getElementById("aim1<data:post.id/>");
var obj1=document.getElementById("aim2<data:post.id/>");
var s=obj1.innerHTML;
var r=s.search(/x3C!-- adsense --x3E/igm);
if(r>0) {obj0.innerHTML=s.substr(0,r);obj1.innerHTML=s.substr(r+16);}
</script>
Now save your template.
Now in every blog post ,Put this special code : <!-- adsense --> in the place where you want to show your adsense ads.

How to Add a Favicon

Today I am going to tell a Blogger Tip on How to add a Favicon to your blog or website. Before starting I will expose Favicon before Beginners in Blogging world. First of all what is Favicon? Favicon stands for favorite icon. It is a small image which is associated with website or blog. It is shown next or before site name in the URL bar of the most browsers.Look at following image:


Now why use a Favicon? It looks fine. You can show your website logo or products image in the URL bar. After all it is very easy to setup favicon in your blog or website. Lets start how to add a favicon on Blogger blog.

To add a favicon you need to have a favicon. There are many ways to create favicon. You can search for "Online favicon generator" in Google. You will find a lot of sites where you will can create free favicon. I use http://www.animatedfavicon.com/ to create animated favicon for my Blogger Blog.
Since you can't upload .ico files in Blogger you need to find free image hosting sites which let you to upload .ico file. I use Google page creator which allows to upload ico file. If you still are stuck what to do then try http://www.iconj.com/generator.php for both generating favicon and free hosting your ico files. Then get the link of favicon URL.


How to Add a Favicon in Blogger

1.Login Blogger.com

2.From dashboard select Layout. Then click on Edit HTML. Before editing HTML code save your template for your safety.

3.Then search for the following line:

<title><data:blog.pageTitle/></title>

4.Just after that line add the following code to enjoy your Blogger Blog favicon.

<link href='your ico file URL' rel='shortcut icon' type='image/x-icon
'/>

If you can't upload ico file then as a alternative way of above tips you can upload a 16x16 or 32x32 size image in any free image hosting site.Then get the image URL. Now instead of ico file url add image file URL in the following code:

<link href='your image file URL' rel='shortcut icon' type='image/x-icon'/>

After that save the template. Now you can see the favicon in the URL bar beside your Blogger blog or website address.

Adding Social Bookmarking Buttons

Today I am going to expose the tips on how to add social bookmarking button in your post. Before that, shortly I will describe What is Social Bookmarking? Why is it needed? Social Bookmarking is online service of bookmarking where you can store and manage your bookmarks. You can watch your bookmarks from everywhere and you can share it with world. The main purpose of social bookmarking is to give opportunity to the readers to submit your post to popular social bookmarking sites and let people know. It will increase your blog traffic and SEO factors. For details search in the Google. Now here is the Blogger Tips to add social bookmarking button in your post.


How To Add Social Bookmarking Buttons To Blogger Posts

1. Login to Blogger.com

2. From Dashboard choose Layout then Edit HTML

3. check on Expand Widget Templates button.

4. Find out the <data:post.body/> tag. Now add the following code after this red code.

<div style='clear:both; '>
<div style='width:60px; float:left;'>
<script type='text/javascript'>
digg_url = &#39;<data:post.url/>&#39;;
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<div style='width:60px; float:left;'>
<script badgetype='square' src='http://d.yimg.com/ds/badge2.js' type='text/javascript'><data:post.url/></script>
</div>
<div style='width:65px; float:left;'>
<a expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Stumble' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/stumble.gif' style='padding:0;margin:0;border:none;'/></a>
</div>
<div style='width:65px; float:left;'>
<a expr:href='&quot;http://del.icio.us/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Delicious' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/delicious.gif' style='padding:0;margin:0;border:none;'/></a>
</div>
<div style='width:65px; float:left;'>
<a expr:href='&quot;http://technorati.com/faves?add=&quot; + data:post.url' rel='external nofollow' target='_blank'><img alt='Technorati' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/technorati.gif' style='padding:0;margin:0;border:none;'/></a>
</div>
<div style='width:65px; float:left;'>
<a expr:href='&quot;http://twitthis.com/twit?url=&quot; + data:post.url' rel='external nofollow' target='_blank'><img alt='Twitter' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/twitter.gif' style='padding:0;margin:0;border:none;'/></a>
</div>
<div style='width:65px; float:left;'>
<a expr:href='&quot;http://www.facebook.com/sharer.php?u=&quot; + data:post.url + &quot;&amp;t=&quot; + data:post.title' rel='external nofollow' target='_blank'><img alt='Facebook' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/facebook.gif' style='padding:0;margin:0;border:none;'/></a>
</div>
</div>

5. After adding code it looks like below.
<data:post.body/>
above code here


I hope you love this hack. Now share and bookmark it with the following social bookmarking button.

Monday, September 12, 2011

Google Analytics


গুগল অ্যানালাইটিকস ব্যবহার করবেন যে ভাবে ….

অ্যানালাইটিকস শব্দের অর্থবোধক পরিভাষা হল পরিসংখ্যান বা পর্যবেক্ষন করা। ওয়েবে অ্যানালাইটিকস হল বিভিন্ন ওয়েবলিংক এর হিট পর্যবেক্ষন করা। ধরুন আপনার সার্ভারে কোন সফটওয়ারের ডাউনলোড লিংক রেখে দিলেন। সেটা কতজন ডাউনলোড করেছে, কখন করেছে, সর্বোচ্চ কতজন কোন দিন ডাউনলোড করেছে ইত্যাদির তালিকা পর্যবেক্ষনকে অ্যানালাইটিকস বলে।অ্যানালাইটিকস কেন করবেন?আপনি খুব কষ্ট করে একটি সাইট তৈরি করলেন। সেটি নাকি খুব জনপ্রিয়তা পাচ্ছে। এখন আপনার সাইটে কতজন ভিজিটর প্রতিদিন আসছে। কোন কোন লেখা বেশী পছন্দ করছে এসব জনার জন্য অ্যানালাইটিকস ব্যবহার অপরিহার্য। আবার আপনার সাইটে সার্চ ইঞ্জিন থেকে ভিজিটর কোন বিষয় লিখে সার্চ করে আসছে। কতক্ষণ থাকছে। ইত্যাদি জানার জন্যও এটি ব্যবহার করা হয়। এটি ব্যবহার করলে আপনি সেই কি-ওয়ার্ডের মধ্যে আর্টিকেল/লেখা লিখে আপনার সাইটকে আরও জনপ্রিয় করতে তুলতে পারেন।কিভাবে অ্যানালাইটিকস করব?আপনার যদি সিপ্যানেল থাকে তাহলে অ্যানালাইটিকস করা খুবই সহজ। সেখানে আপনাকে কিছুই করা লাগবে না। কিন্তু আমি আজকে সিপ্যানেল সম্পর্কে বলব না। কারন সবার সি প্যানেল নেই। আমি আজ যে পদ্ধতি বলব তা সি প্যানেল বা অন্য যে কোন সাইটের ক্ষেত্রেই কাজে লাগবে। এটি হল গুগল অ্যানালাইটিকস। এটি থেকে সহজেই আপনি আপনার সাইট ভিজ্যুয়ালী অ্যানালাইটিকস করতে পারেন। আসুন পর্যায়ক্রমে দেখে নেই।এই পক্রিয়ার জন্য আপনার লাগবে একটি জিমেইল/গুগল একাউন্ট। আপনার যদি জিমেইল একাউন্ট থাকে তাহলে এখানে ক্লিক করে অ্যানালাইটিকসের সাইটে প্রবেশ করুন।ছবি
চিত্রের দেখানো Access Analytics এ স্থানে ক্লিক করুন। আপনার গুগল একাউন্ট দিয়ে সাইন-ইন করুন।

ছবি

এরপর এখানে আপনার সাইট সংযুক্ত করতে হবে। এজন্য উপরের চিত্রে দেখানো লাল রঙের Add new profile স্থানে ক্লিক করুন।

ছবি

Please provide the URL of the site you would like to track. এখানে আপনার ওয়েবসাইটের ঠিকানা দিন।

ছবি

এরপর নিচের চিত্রের মত আপনার একটি ট্র্যাকিং কোড দিবে। এবং ঠিক নিচের একটি কোড পাবেন এই দুটিকে সযতনে রাখুন।

ছবি

কোড

ছবি

আপনার অ্যানালাইটিকস সেটিক করা হয়ে গেছে। এবার এটিকে আপনার সাইটে অ্যাকটিভ করার পালা।

ওয়ার্ডপ্রেসে: ওয়ার্ডপ্রেসে অ্যানালাইটিকস সেট করার জন্য অনেক প্লাগিন পাওয়া যায়। আপনারা WP Google Analytics নামের এই প্লাগিনটি ডাউনলোড করে ইনস্টল করুন। এটিকে ইনস্টল করলে সেটিংস মেন্যুতে নামে একটি মেন্যু পাবেন এখানে ক্লিক করুন। চিত্রের মত আসবে

ছবি

এখানে আপনার কোড টি দিন। (বিঃদ্রঃ ছোট (UA) সিরিজের কোডটি নয় বড় অনেক লাইনের কোডটি দিন)
জুমলা: জুমলাতে এটি সেট করার জন্য BIGSHOT Google Analytics নামের এই এক্সটেনশনটি ডাউনলোড করুন। তারপর আপনার সাইটের আপনার Extensions>Plugin Manager যান এবং System - BIGSHOT Google Analytics এ ক্লিক করুন। তাহলে একটি এডিটর প্যানেল আসবে এখানে আপনি আপনার (UA) সিরিজের কোডটি দিয়ে সেভ করুন

ছবি

অ্যানালাইটিকস পর্যবেক্ষন করব কি করে?

গুগল অ্যানালাইটিকস করা হলে তা অ্যাকটিভ হতে ২/১ দিন সময় লাগে। অ্যাকটিভ হয়ে গেলে নিচের মত দেখা যাবে
ছবি

এখানে উল্লেখ্য যে, উপরের সাইটটি অ্যকটিভ হয়নি এবং নিচেরটি অ্যাকটিভ হয়েছে

অ্যাকটিভ হলে View report এ ক্লিক করুন। নিচের মত আপনার সাইটের বিস্তারিত আসবে

ছবি

এখান থেকে সহজেই আপনার সাইটের ভিজিটরগুলো ট্র্যাক করতে পারবেন। আশাকরি বাকীটুকু আপনারা পারবেন।

Sunday, September 11, 2011

Adsense Tips In Bangla

এ্যাডসেন্স কি?
ন্যূনতম কিছু সময় এবং কোনপ্রকার অর্থ ছাড়াই Google adsense  আপনাকে কিছু বিজ্ঞাপন প্রদান করবে যা আপনি আপনার সাইটের প্রতিটি পাতায় ব্যবহার করতে পারবেন।
আপনার সাইটের বিষয়বস্তু এবং উপাদানের সাথে সঙ্গতি রেখে Google adsense লেখা বা ছবি আকারে বিজ্ঞাপন প্রদান করবে। এবং Google adsense সার্চ বক্স সাইটে স্থাপন করলে ভিজিটররা সার্চ করলে রেজাল্ট পেজে Google adsense লেখা আকারে বিজ্ঞাপন প্রদান করবে।

প্রয়োজনীয় উপকরণ

আপনার একটি ওয়েবসাইট দরকার অনলাইনে আয় করার জন্য। Google adsense  প্রোগ্রামে অংশগ্রহণ করতে হলে কিছু নিয়মকানুন পালন করতে হবে। তাছাড়া Google adsense  প্রোগ্রামে সিলেক্ট হবার পর আরও কিছু নিয়মকানুন পালন  করে যেতে হয়।
  • অংশগ্রহণকারীর বয়স অবশ্যই ১৮ বছর-এর উর্ধ্বে হতে হবে।
  • গুগল এর কোন কর্মকর্তা আপনার সাইট ভিজিট করে অনুমোদন করবেন, তবে তিনি সাইটের মান ঠিক না থাকলে আবেদন নাকচ করতে পারেন।
Google adsense  প্রোগ্রামের বিস্তারিত বিবরণ তাদের সাইটে দেওয়া আছে।
Google adsense  প্রোগ্রামের সুনাম অক্ষুন্ন রাখার জন্য সকল পাবলিশারদেরকে নিম্নোলিখিত শর্তাবলী মেনে চলতে হবেঃ

বিজ্ঞাপন স্থাপন

  • একটি পেজে সর্বোচ্চ ৩টি বিজ্ঞাপন স্তাপন করা যাবে।
  • একটি পেজে সর্বোচ্চ ২টি সার্চ বক্স স্থাপন করা যাবে।
  • উপোরক্ত বিজ্ঞাপন ও সার্চ বক্স ইউনিট ব্যতীত ১টি লিংক ইউনিট বসান যাবে।
  • খালি কোন পেজে কোন বিজ্ঞাপন বসান যাবে না।
  • বিজ্ঞাপন ও সার্চ বক্স ইউনিট কোন ডোমেইন পার্কিং ওয়েবসাইট, পপ-আপ, পপ-আন্ডার, ইমেইলে বসান যাবে না।
  • শুধুমাত্র বিজ্ঞাপন প্রদর্শনের জন্য নির্মিত কোন পেজে বিজ্ঞাপন বসান যাবে না।
  • পেজে প্রদর্শিত কোন কিছু দিযে এড়ড়মষব অফং এর বিজ্ঞাপনগুলো ঢাকা পড়া যাবে না্‌
  • Google adsense এর বিজ্ঞাপনগুলোতে ক্লিক করলে নতুন উইন্ডোতে পেজ খোলা যাবে না।

সাইটের বিষয়বস্তু

সাইটে যা অবাঞ্চিতঃ
  • অতিরিক্ত
  • সংঘর্ষপূর্ণ, বর্ণ-বৈষম্যমূলক, অথবা কোন ব্যক্তি, দল বা প্রতিষ্ঠানের বিরুদ্ধে নেতিবাচক মন্তব্য।
  • হ্যাকিং/ক্র্যাকিং সংক্রান- কোন তথ্য।
  • অবৈধ মাদক বা নিষিদ্ধ ঔষধ সংক্রান্ত কোন তথ্য।
  • পর্নোগ্রাফী, প্রাপ্তবয়স্ক কোন তথ্য বা ছবি।
  • জুয়া বা জুয়া সংক্রন্ত কোন তথ্য।
  • অতিরিক্ত বিজ্ঞাপন
  • অবৈধ কার্যক্রম বা কারো মানবিক অধিকার হরণ করে এমন কিছু্‌।
  • অতিরিক্ত, পুনরাবৃত্তি, অপ্রসঙ্গিক কিওয়ার্ডের ব্যবহার।
  • গোপন কোন কার্যক্রম যা আপনার সাইটের পেজর‌্যাংক বাড়াতে সহযোগিতা করে।
  • কোন তৃতীয় পক্ষকে নিয়োগ করে বিজ্ঞাপনগুলোতে ক্লিক করানো।
  • কোন প্রাণঘাতী অস্ত্র বিক্রয় বা বিজ্ঞাপন।
  • বিয়ার বা তরল মদ বিক্রয় বা বিজ্ঞাপন।
  • তামাক বা তামাকজাতীয় দ্রব্য বিক্রয় বা বিজ্ঞাপন।
  • ঔষধ বিক্রয় বা বিজ্ঞাপন।
  • কোন কিছু নকল করে তার বিজ্ঞাপন।
সাইটের কার্যক্ষমতা
আপনার সাইটে কোন ব্রোকেন লিংক থাকতে পারবে না, এবং সাইট সাবলীলভাবে কার্যক্ষম হতে হবে।
সাইটের জবাবদিহিতা
সাইটের ব্যবহারকারীদের চাহিদা ও তাদের জিজ্ঞাস্য বিষয়সমূহ নিয়মিত পূরণ করে যেতে হবে।

ওয়েবমাস্টার নির্দেশিকা

উপরোক্ত নির্দেশমালা ছাড়াও এ্যাডসেন্স এ অংশগ্রহণকার দেরকে ওয়েবমাস্টার নির্দেশিকা পালন করতে হয়। এখানে আপনাদের সুবিধার্থে কিছু বিষয় আলোচনা করা হলঃ
  • অতিরিক্ত বা অপ্রাসঙ্গিক কিওয়ার্ড দিয়ে পেজগুলো ভারী করা যাবে না।
  • কোন গুপ্ত পুননির্দেশ ব্যবহার করা যাবে না।
  • নকল কোন বিষয় দিয়ে অনেকগুলো পেজ, ডোমেইন, বা সাবডোমেইন তৈরী করা যাবে না।
  • গুপ্ত টেক্সট বা লিংক ব্যবহার করা যাবে না।
  • একটি পেজে অসংখ্য লিংক ব্যবহার করা যাবে না(ন্যূনতম ১০০টি)।
  • সাইটের র‌্যাংকিং বা পেজর‌্যাংক বাড়ানোর জন্য কোন লিংক স্কিম কার্যক্রমে অংশগ্রহণ করা যাবে না। তদুপরি, ওয়েব স্প্যামারদের লিংক বা Bad Neighborhood  দ্বারা আপনার সাইট ক্ষতিগ্রস্ত হতে পারে।

Wednesday, August 31, 2011

Earn Money By Sharing Your Files

You Can Easily earn money By sharing your Files on Web. Just You need to walk some some simple steps. And start Earning Money Right Now. 


From Now if you need to send anything like audio, video, applications or even any documents or image to your friends. Or you need to explore your self. Just try it with some file sharing network. Who will gives you the opportunity to easy share with bonus money. So, Start today and be the Winner. Just Some simple steps away.


1. Simple sign up with your valid mail Id 
2. Start uploading files.
3. They will give you a download link.
4. Copy the link location and Past in anywhere you need to share, Like face book, your blog, forum.
 or more public forums via Google Search.

5. Just when your Files start to get Downloaded by users, you will automatically start get paid for every 1000 Downloads (yes 1000 seems HUGE but this is not, when you throw your links on a Public Forum) where you can even get 100,000 Downloads in a month.  Lets say you get paid $10 / 1000 Downloads. Which i think is great….

Providing You Some few good and reliable File Hosts for good earning purpose: 

Uploading.com (Pays upto $20/1000 Downloads (Maximum)
Fileserve.com (Pays $5-$25/1000 Downloads (depending on location)

WUpload.com (Pays $40/100 Downloads (Recommended)
Ziddu.com (Pays $10/30 Downloads (Usual)