Tampilan : Daftar Grid

25 Stylish Free Fonts for Your Blog Designs

Typography can be considered as a powerful tool when it involves delivering information to your readers. However, the number of typography mistakes on the Web is massive and not everyone possesses the knowledge required by how to use it properly. Typography is deemed as being the soul and backbone of design – whether incorporated properly in Digital design or Print- great Typography tends to impact such within its effectiveness and appearance.
In this article we have gathered 25 Stylish Free Fonts for your digital needs to be used for fancy headers, titles, banners or just about any other way you’d like to implement them into your site or project designs to give them more stunning looks !!

 

1. Tua Type

tua

Download

2. Anson

Anson

Download

3. Are You Freaking Serious

are_you_freakin_serious

Download

4. Florence

florence

Download

5. Quenelles

quenelles

Download

6. Typometry

typometry

Download

7. Sketchetic Fill

sketcheticfill

Download

8. Canaro

canaro

Download

9. High Tide

hightide

Download

10. Moon Flower

moon_flower

Download

11. Higher

higher

Download

12. Chula

chula

Download

13. Ruskof

ruskof

Download

14. JD Melted

jd-melted

Download

15. Friandise

friandise

Download

16. Midnight Moon

midnightmoon
http://www.fontspace.com/hypefonts/midnight-moon

17. Plethora 1984

plethora1984

Download

18. Leather Work

leatherwork

Download

19. Mood

mood

Download

20. Hyped Free Font

hyped free font

Download

21. Prosto

prosto

Download

22. Always Together

alwaystogether

Download

23. Love me Tender

lovemetender

Download

24. Aw, Jaysus

aw-jaysus

Download

25. The Cuban Wrestler

the_cuban_wrestler

Download 
#A3

How to Create Navigation Menu Using Only CSS


In this tutorial we will be creating a basic responsive navigation menu with dropdown using only HTML and CSS. Many navigation menus (especially responsive ones) are created using a combination of HTML, CSS and Javascript. This simple CSS only method will demonstrate that Javascript isn't always necessary!
The code we will create includes only the most essential CSS required for structure and basic styling. This makes it much easier to follow and understand the purpose of each line of code. It also means that the end product is primed and ready for your unique customization.
Live Demo

A Quick Message

Big thanks to the commenters that informed us of an issue this code was having on mobile devices! We have now amended the code using the checkbox method found here: http://bit.ly/1pMflzW as suggested by Sean Savoie.

The HTML

As you can see I have declared the HTML5 doctype, and included the basic page structure. The only content within the body tags is a nested unordered list. To demonstrate which top level links will have dropdowns, I have included a unicode down arrow (↓).
<!doctype html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>CSS Only Navigation Menu</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="style.css">
</head>
<body>
 <ul id="menu">
  <li><a href="#">Home</a></li>
  <li>
   <a href="#">About ↓</a>
   <ul class="hidden">
    <li><a href="#">Who We Are</a></li>
    <li><a href="#">What We Do</a></li>
   </ul>
  </li>
  <li>
   <a href="#">Portfolio ↓</a>
   <ul class="hidden">
    <li><a href="#">Photography</a></li>
    <li><a href="#">Web & User Interface Design</a></li>
    <li><a href="#">Illustration</a></li>
   </ul>
  </li>
  <li><a href="#">News</a></li>
  <li><a href="#">Contact</a></li>
 </ul>
</body>
</html>

The CSS

First of all, some basic styling to the ul and li elements to remove bullet points and other list styles. The inline-block and float:left attributes make the list display horizontally.
/*Strip the ul of padding and list styling*/
ul {
 list-style-type:none;
 margin:0;
 padding:0;
 position: absolute;
}

/*Create a horizontal list with spacing*/
li {
 display:inline-block;
 float: left;
 margin-right: 1px;
}
The following attributes are almost exclusively for aesthetic appeal. If you intend to style this menu to your liking then this is the section of code to fiddle about with.
/*Style for menu links*/
li a {
 display:block;
 min-width:140px;
 height: 50px;
 text-align: center;
 line-height: 50px;
 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 color: #fff;
 background: #2f3036;
 text-decoration: none;
}

/*Hover state for top level links*/
li:hover a {
 background: #19c589;
}

/*Style for dropdown links*/
li:hover ul a {
 background: #f3f3f3;
 color: #2f3036;
 height: 40px;
 line-height: 40px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
 background: #19c589;
 color: #fff;
}
Next up, some styling for the dropdown links. The first class defines that the dropdown will not be visible by default. And the final class says that the dropdown element will become visible on top level link hover.
/*Hide dropdown links until they are needed*/
li ul {
 display: none;
}

/*Make dropdown links vertical*/
li ul li {
 display: block;
 float: none;
}

/*Prevent text wrapping*/
li ul li a {
 width: auto;
 min-width: 100px;
 padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
 display: block;
}
responsive menu css3 The navigation menu is ready for desktop use now, however we should also include some love for mobile users. Using a media query I target devices with a max width of 760px and make a few changes to the code.
/*Responsive Styles*/

@media screen and (max-width : 760px){
 /*Make dropdown links appear inline*/
 ul {
  position: static;
  display: none;
 }
 /*Create vertical spacing*/
 li {
  margin-bottom: 1px;
 }
 /*Make all menu links full width*/
 ul li, li a {
  width: 100%;
 }
}

Optional Final Step

Space is limited on mobile devices, so it would be cool if we also had a button prompting mobile users to click a button before displaying the whole menu. To do this a couple of lines of code to the HTML where you want the button to appear.
<label for="show-menu" class="show-menu">Show Menu</label>
<input type="checkbox" id="show-menu" role="button">
Add the following code into the CSS anywhere outside the media query:
/*Style 'show menu' label button and hide it by default*/
.show-menu {
 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 text-decoration: none;
 color: #fff;
 background: #19c589;
 text-align: center;
 padding: 10px 0;
 display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}
And this code within the media query:
 /*Display 'show menu' link*/
 .show-menu {
  display:block;
 }
responsive menu css3

Complete Code

HTML:
<!doctype html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>CSS Only Navigation Menu</title>
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <link rel="stylesheet" href="style.css">
</head>
<body>
 <label for="show-menu" class="show-menu">Show Menu</label>
 <input type="checkbox" id="show-menu" role="button">
  <ul id="menu">
  <li><a href="#">Home</a></li>
  <li>
   <a href="#">About ↓</a>
   <ul class="hidden">
    <li><a href="#">Who We Are</a></li>
    <li><a href="#">What We Do</a></li>
   </ul>
  </li>
  <li>
   <a href="#">Portfolio ↓</a>
   <ul class="hidden">
    <li><a href="#">Photography</a></li>
    <li><a href="#">Web & User Interface Design</a></li>
    <li><a href="#">Illustration</a></li>
   </ul>
  </li>
  <li><a href="#">News</a></li>
  <li><a href="#">Contact</a></li>
 </ul>
</body>
</html>
CSS:
/*Strip the ul of padding and list styling*/
ul {
 list-style-type:none;
 margin:0;
 padding:0;
 position: absolute;
}

/*Create a horizontal list with spacing*/
li {
 display:inline-block;
 float: left;
 margin-right: 1px;
}

/*Style for menu links*/
li a {
 display:block;
 min-width:140px;
 height: 50px;
 text-align: center;
 line-height: 50px;
 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 color: #fff;
 background: #2f3036;
 text-decoration: none;
}

/*Hover state for top level links*/
li:hover a {
 background: #19c589;
}

/*Style for dropdown links*/
li:hover ul a {
 background: #f3f3f3;
 color: #2f3036;
 height: 40px;
 line-height: 40px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
 background: #19c589;
 color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
 display: none;
}

/*Make dropdown links vertical*/
li ul li {
 display: block;
 float: none;
}

/*Prevent text wrapping*/
li ul li a {
 width: auto;
 min-width: 100px;
 padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
 display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
 text-decoration: none;
 color: #fff;
 background: #19c589;
 text-align: center;
 padding: 10px 0;
 display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
 /*Make dropdown links appear inline*/
 ul {
  position: static;
  display: none;
 }
 /*Create vertical spacing*/
 li {
  margin-bottom: 1px;
 }
 /*Make all menu links full width*/
 ul li, li a {
  width: 100%;
 }
 /*Display 'show menu' link*/
 .show-menu {
  display:block;
 }
}

Conclusion & Live Demo

Live Demo This code should work just fine in modern browsers, and doesn't rely on any javascript which can slow down page load times. Be sure to check out the live demo and use the code however you like!
#A3

How To Create Table Of Contents in Blogger


Create Table Of Contents in Blogger : 
 By Creating Table of Contents in your Blog will help you to arrange your Blog Contents category wise.This Widget is specially designed for blogs which contains alot of categories , this widget will enable them to place all the categories along-with the specific posts in a page called "Table of Contents".The most interesting fact about this widget is that it will help the readers to inform that which post is "New" and which is "Old" . The word New will dance with latest posts and Old will be with Old Posts.
 

How To Create Table Of Contents in Blogger

  • Get into Blogger Dashboard
  • Click On Pages
  • Create a Static Page
  • Click On HTML of the Page
  • Copy the below script and paste it into the Page HTML
 <script src="//sites.google.com/site/blogger9dotnet/color-css/blogger9.js"></script>
<script src="/feeds/posts/summary?alt=json-in-script&amp;max-results=1000&amp;callback=loadtoc" type="text/javascript"></script>
  • Name the Page "Table Of Contents" or any thing else
  • Hit Publish and that's it!
So What's Up : This widget just arrange all the Blog Contents in a social way.And it helps the readers to navigate old and new posts.Stay Blessed ,Happy Blogging! 
#A3

How to Add Stylish Font To Blogger Post Title

Add Stylish Font To Blogger Post Title
By default all the Blogger blogs have the same fonts. So it's better if you spice up your blogspot blog by changing the font of your post title. This will ensure that the blog visitors will notice your blog post and it also looks good. So it's good if we use a different font for the post title. We had created a post on the similar topic long time back, but this is an updated post which will work properly for everyone.




Step 1:
Visit Google Web Fonts and search a font that you like from the list of available fonts. Once you select a font, click on Quick-Use. You will see all the different styles of the selected font. Select the style that you like and on the right side it will show much the font affects the loading time of a page.


Add Stylish Font To Blogger Post Title

On further scrolling down, you will see a code. You have to copy this code as it is and also check the CSS code that is given below it in the Integrate the fonts into your CSS section. It is important to remember that the code is incomplete for the blogger bog and we have to add a / at the end of the code. Here is an example of how the code from the Google page looks

<link href='http://fonts.googleapis.com/css?family=Gorditas' rel='stylesheet' type='text/css'>

and how it looks after adding the / in it at the end.

<link href='http://fonts.googleapis.com/css?family=Gorditas' rel='stylesheet' type='text/css'/>


Add Stylish Font To Blogger Post Title

Step 2:
Now go back to your blogger blog and select the Template section of the blog. Before you do anything, just backup your blogger template by clicking the Backup/Restore option on the top right corner.

Step 3:
Now comes the part when you past the code that you had copied from Google Web Fonts page in your template. Click on Edit HTML option and then select the Proceed option. Now you will have to search  <head> in the template and paste the Google code just below it.

Step 4:
Now search .post h3 or .post h2 , whichever is present in your template. You will see font-size, font-weight or font-family there. If font-family isnt present then you have to paste the Google font-family code and if it is already present then just replace it with the Google code. This is how the code should appear. Its available on the Google page in step 4.
font-family: 'Chau Philomene One', sans-serif; Step 5:
Now click on Save and check your blog. You will see the new font applied to all your blog post titles.

We hope that you found this post useful. Do share it with your friends and if you have any problem, then use the comments section below.
#A3

How To Fully Customize The Post Titles On Blogger

 blog design
Many of the templates both from the Blogger template designer and Custom templates leave the post titles fairly standard.When it comes to fonts, sizes, colors etc.. the post titles on almost all blogs have the same design.But you can add some spice to your post titles without too much hard work and adding even a few minor customizations can make all the difference.Every Blogger template has a small piece of Css that controls how the Post titles appear and by adding or changing small pieces of code we can change the appearance.

So in this post among other changes to your blog titles we will see, How To Change The Size, Change The Color, Change The Background Color or add A Background Image, Change The Font Family and more..

First make sure to back up your template, I'm sure you wont make a mistake but just in case.With that done lets look at some of the effects we can add to Blogger post titles.


How To Customize Post Titles 

The first thing we must do is find the section of Css that controls the post titles.This code will be the same in 95% of blogs so if for some reason it differs in your blog drop a comment and we will help.

From you dashboard click 'Design' > 'Edit Html' (No Need To Expand Widget Templates)

Click 'CTRL F' and look for the following code (CTRL F generates a search bar - More Info)

.post h3 a

This is the section of code that controls your post titles, it will be followed by a few lines of code that create the appearance.

If You Cant find that code try looking for this :

h3.post-title,

Now that you have located the sections of code that control the appearance of your post titles you can change the current Css or add extra Css, lets look at some examples.If you are adding Css it always goes below the code you found.

Make The Text / Font size Bigger Or Smaller - change the font-size number :

font-size: 18px;

Make The Post Titles All Capital Letters -  add the following code directly below .post h3 :

text-transform:uppercase;

Make The Post Titles Bold -  if you see font-weight: normal; change to font-weight: bold; or add font-weight: bold; if it is not already specified.

Move the Post Title To the left, right or in the center -  Change or add the code below :

text-align:left;
text-align:right;
text-align:center;

Add A Background Color To Your Post Titles -  Add The Code Below With Your Desired Color :

background:#000000;

You can change #000000 to your desired color - Get color codes here

Add A Border To Your Post Titles -  Add The Code Below :

border: 1px dashed #cccccc;

You can change the border type dashed to solid or dotted, you can also change the color code from #cccccc - Get color codes here.

Add A Background Image To Your Post Titles -  Add The Following Code :

background:url(http://YOURIMAGE.jpg) repeat;

Replace http://YOURIMAGE.jpg with the image you want to use.

Change the Font Style / Font Family -  Your Css will either have the Font Family similar to this :

font: $(post.title.font);

Or Similar To This :

font-family: Georgia,trebuchet ms, tahoma, Verdana, Arial, Sans-Serif;

To Change The Font Family Replace that code with another font.This link is to Common Fonts For Windows And Mac..Almost all these fonts will work with Blogger.

Remove the current font and add the new font link this :

font-family:FONT FROM ABOVE LINK HERE;

To Look Like This :

font-family: Arial, Arial, Helvetica, sans-serif;

Be sure to add ; at the end of the font family.

There is much more you can do to customize your post titles but we will leave it there for now.Don't go changing your template without having a back up and that way you can play around until you find what your looking for.Another idea is to create a test blog and get the right combination there before changing the real blog..Have Fun !
#A3

How To Change Post Title Color in Blogger Template Designer Templates

How To Change Post Title Color in Blogger Template Designer Templates



I have received a lot of comments on a previous post. Readers are asking how to change the post title color in the new Blogger Template Designer templates. Well, here is a very simple step by step tutorial for you.We'll make some changes in the template CSS and then you'll be able to customize post title without any coding stuff.

Warning: Before making any changes, you must backup your existing layout:

Blogspot How to: Backup Your Blogger (Blogspot) Template

Steps to Make Post Title Font Customizable in the Blogger Template Designer Templates.


  1. Open the Template section.
  2. Blogger Updated Dashboard
  3. Click the Edit HTML button.
  4. Blogger Edit HTML Button
  5. You'll see following page with a LOT of code. Don't worry, just expand <b:skin>...</b:skin>.
  6. After expanding the code in previous step, scroll down a bit and you'll see this code:
    /* Variable definitions
       ====================
  7. REPLACE the above code with the following one:
    /* Variable definitions
       ====================
    
       <Group description="Post Title Color" selector="h3.post-title">
         <Variable name="post.title.link.color" description="Link Color" type="color" default="#ff0000" value="#ff0000"/>
         <Variable name="post.title.hover.color" description="Link Hover Color" type="color" default="#0000ff" value="#00ffff"/>
         <Variable name="post.title.color" description="Color on Post Page" type="color" default="#ff00ff" value="#ff00ff"/>
       </Group>

    Don't save or preview your template yet. Proceed to the next step.
  8. Now find this code:
    ]]></b:skin>
    and REPLACE it with the following one:
    h3.post-title { color:$(post.title.color); }
    h3.post-title a, h3.post-title a:visited { color:$(post.title.link.color); }
    h3.post-title a:hover { color:$(post.title.hover.color); }
    
    ]]></b:skin>
  9. Click the Preview button. You'll see the post title color as blue. Don't worry you can change it later in Blogger Template Designer. Save your template and click the Close button.

Hurray, Coding Done! Go & Customize the Post Title in Template Designer!

Simply click the Customize tab to open the Blogger Template Designer. Select Advanced from the left options. You'll see Post Title Color at the top.:
There are 3 options in the Post Title Color. Here is their detail: Link Color: This is the color of the post title as a link. Any change to this option will appear in the Template Designer. Link Hover Color: This color will appear when someone brings mouse over the post title. Any change to this option will not be visible in the Template Designer. You'd have to Apply the change, open the blog and bring your mouse over the post title to see the change in color. Color on Post Page: This is the color of the post title on post page when post title is not a link. Again, you'd have to Apply the change and open some post title page to see the affect.

Help BetaTemplates!


If this tutorial was helpful then please add a link back to BetaTemplates on your blog. The link code is available at the bottom of this page.

#A3

How to Change Post Title Font, Size & Color

The default Blogger-Blogspot layouts (like Minima) don't allow you to change or customize the look of post title font through Fonts & Colors tab. An HTML/CSS expert can easily change the post title font from the Edit HTML tab but that's not easy for a non-technical person. In this tutorial, I'll tell you how to fully customize the post title font by going to Design -> Template Designer -> Advanced.


 
1- Find the Existing CSS Code.
From the Dashboard, go to Design then Edit HTML tab.


Find the following code:

.post h3 {
margin:.25em 0 0;
padding:0 0 4px;
font-size:140%;
font-weight:normal;
line-height:1.4em;
color:#333333;
}

.post h3 a, .post h3 a:visited, .post h3 strong {
display:block;
text-decoration:none;
color:#000000;
font-weight:normal;
}

.post h3 strong, .post h3 a:hover {
color: #000000;
}


Blogspot How to: Change Post Title Font, Size & Color


The code, you found above, is responsible for the appearance of post title. If you're not using Minima Blogger-Blogspot template then you might not be able to find this code so please leave your comment with blog address and I'll try to help. If you've found the code then continue with the tutorial.

2- Replace the Existing CSS Code With New CSS Code.


In this step, you have to replace the default code with the following code:

.post h3 { margin: .25em 0 0; padding: 0 0 4px; color: $titlecolor; font: $posttitlefont; }
.post h3 a, .post h3 a:visited, .post h3 strong { text-decoration: none; color: $titlecolor; }
.post h3 strong, .post h3 a:hover { color: $titlehovercolor; }


3- Customize the Post Title Font in Design -> Template Designer -> Advanced Tab


Stay in the Edit HTML tab. Scroll down a little and you'll find this code:

/* Variable definitions
====================


Copy and paste the following code right below the above code:

<Variable name="titlecolor" description="Post Title Color"
type="color" default="#c60" value="#cc6600">
<Variable name="titlehovercolor" description="Post Title Hover Color"
type="color" default="#c60" value="#cc6600">
<Variable name="posttitlefont" description="Post Title Font"
type="font" default="normal normal 18px 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif" value="normal normal 18px 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif">


After adding the above codes, the result would look something like this:

/* Variable definitions
====================
<Variable name="titlecolor" description="Post Title Color"
type="color" default="#c60" value="#cc6600">
<Variable name="titlehovercolor" description="Post Title Hover Color"
type="color" default="#c60" value="#cc6600">
<Variable name="posttitlefont" description="Post Title Font"
type="font" default="normal normal 18px 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif" value="normal normal 18px 'Trebuchet MS',Trebuchet,Arial,Verdana,Sans-serif">


After that, you can just save your template. Now, you can easily customize the post title font through Design -> Template Designer -> Advanced tab.

Need Help?


If you've any problem in this tutorial the feel free to leave a comment, I'll try to answer as soon as possible :-)
#A3

Top 5 Awesome Google AdSense Alternatives


Internet World is Young,and Providing alot of opportunities to earn a huge amount of Money.This is 100% true that Google Adsense is ruling the world and their is no competitor to Google Adsense which helps you to earn a huge amount of revenue from your Blog/Website.Actually now-a-days many bloggers have lost their Adsense Accounts due to invalid Click Activity or any Solid Reason which is against AdSense Policies.However there are many PPC Programs which is dancing in the Internet World but the problem with them is;they pay very low amount of money.In this regard  we will provide you some Alternatives of Google Adsense which can pay a huge amount of money to you and you can easily monetize for these Products.

top-5


Top 5 Awesome Google AdSense Alternatives 

As we mentioned above that Google AdSense is ruling the world and paying a flood of money to their publishers so their is no competitor to Google Adsense,however we are providing some Alternatives which will surely help you to generate a good amount of money from your Blog/websites.All these Products will pay you a good amount of money but they have certain conditions which should be present in your Blog/website and i.e your Blog should have a good amount of Organic Traffic,PR should be high,and Alexa should be high.In short you can go for any of the below products,and i hope you will earn alot of money from these Products.

AdBrite,The Best AdSense Alternative

AdBrite

AdBrite–AdBrite is one of the most popular source of monetizing your Blog.It pay a good amount of money,however it doesn't show any ads on your Blog/Website,AdBrite Provides Text Link Ads,Picture ads and inline ads.For Monetizing with AdBrite you have to signup there as a Publisher,then create or setup "ad zone" in the Ad zone you will have to Provide your Blog/Website URL and description. AdBrite allows you to enter 50 keywords related to your website/blog.Actually these keywords will helps the AdBrite Network to navigate and match right advertisers to your blog/website.

Yahoo (Media.net),The Awesome Source of Monetizing.


image source theseoportal.com
Yahoo(Media.Net)–The most amazing and interesting fact about Yahoo Contextual ads is that it get approve very quickly.It doesn't depends on the site traffic but quality.The minimum payment is 100$,in this case it is similar to Google AdSense but in Yahoo you don't have to wait for PIN, because it pays on Paypal.Media.net has been started in 2013 and has got alot of popularity,so there is something,don't waste your time if you don't have Adsense Account go for Media.net.

BuySellAds,Proudly Competing With Adsense

image source geteverything.com
BuySellAds–BuySellAds was started in February 2008 and now this Product is in clouds,they get alot of success in a short interval of time.This Product is lil bit proud,and wants something big from their Publishers,but as a result they pay a huge amount of Money,they don't approve a blog/site which has less then 50K visitors daily.It also adds some other condition i.e Your Blog Should have high PR at-least 1 or higher.However it pays a good amount of money.The minimum Payout at BuySellAds is 50$(DOLLERS) which a publisher can get via Paypal easily.

Tribal Fusion,The Another Source for Monetizing Blogs or websites

Tribal Fusion–Tribal Fusion is another awesome alternative to Google Adsense which pay a good amount of money to their publishers.Tribal Fusion is more strict than BuySellAds,likewise it also needs a flood of traffic,Page Rank and Alexa Rank of a Website/Blog.Once you got approve you will get a high CPM.The minimum Payout at Tribal Fusion is 100$,the money can be transferred via Bank Account or directly through a Check.So go for tribal fusion if you don't have AdSense Account and try it 

Chitka,The Recommended AdSense Alternative.

chitika
image source technobuffalo.com
Chitka–Chitka is one of the most Popular Alternative AdSense,it is liked by many Bloggers,the secret about this Love is that they pay per Click and you can cash out once your Earning reaches 10$.The payment can be received by Paypal. Chitka Always show the targeted ads,in short chitka is a fantastic Advertising Network for making money Online.So don't waste time if you don't have Adsense Account,Go for Chitka and Enjoy Earning.

So What's Up :- You can observe from my Blog,i am using Adsense and earning alot of money,whats your opinion,also share with us what you use?What you Prefer to use?Which One is the Best Advertising Network?Is Google Adsense the best One?Did You Like the Post?Share your Beautiful ideas with us,stay Blessed,Happy Blogging :)


#A3

How To SEO Optimize Blog Titles For Higher Search Results


This is what we called Blogger Title Swapping.If you are interested in getting a flood of traffic to your blog,and want to Optimize Blog Titles for Higher Search Results,then you are at the right place.We will show you How To SEO Optimize Your Blog Titles for Higher Search Results.You may have observed that whenever you visit a blog,in browsers title bar you will notice the Blog name(for example ThatsBlogging) and after that you will see the post Title.It will look like the below picture.

But after Swapping it will look like the below picture.

You will think that what is its Bonus Point?The benefit of Applying this trick is that your Blog Title will appear clearly in Google Search results.And according to my experience visitors search for the specific Post not for Blog Title or anything else.So by applying this trick visitors will easily navigate your Blog articles and contents.


How To SEO Optimize Blog Titles For Higher Search Results

  • Go To Blogger Dashboard.
  • Then Click on Template
  • Now Click On Edit HTML
  • Proceed it >> and Click on expand widgets template ( i.e Check the Small Box)
  • Now Search for the Below Code 
<title><data:blog.pageTitle/></title>
It will look like the below picture
  • Now Replace the above Code with the below Script
<b:if cond='data:blog.pageType == "item"'> <title><data:blog.pageName/> |<data:blog.title/></title> <b:else/> <title><data:blog.pageTitle/></title> </b:if>
After replacing it will look like the below picture 


  • Now Check for Preview,if it works that's it you are done.
So What's Up:- Applying this trick will surely help you to boost blog traffic,your blog will be at the top of Google Search Results.Now time to apply this trick,so just Open your Blogger Account and do it :)
#A3

How to Automatically Publish Blogger Posts To Facebook,Twitter and Other Social Networks


Social Networks is the backbone for your Blog Traffic.Never underestimate the strength of Social Networking Websites,actually every social networking website is getting  million of hits daily,and if you share your blog post/content there,then surely you can get a flood of traffic to your Blog.Now every Blogger is sick of posting his/her blog posts daily to Facebook,Twitter or other social networking sites,but here we have found an awesome trick via which you can Automatically Publish Your Blogger Posts to Facebook,Twitter, or any Other Social networking website.For installing this Service follow the below easy steps.




How To Automatically Publish Blogger Posts To Facebook and Other Social Sites

  • Visit DLVR.it
  • Now Sign up there,by filling the form with required Data
  • After Entering Email and Password , click on Sign Up.
  • Now Go To Your email inbox and Confirm your Email Address
  • Now it will redirect you to another Page where you have to enter your Blog Feed Burner Username 
  • Click On Twitter Icon at the right side,Now it will redirect you to twitter account,there enter E-mail and Password and Click on Authorize App
  • Now your Blog Posts will Automatically Publish to your Twitter Account
  • Now For Facebook Click On The Facebook Icon at the right side,it will redirect you to Facebook,there enter your username and password,after that they may ask you about Page username i.e Fan Page
  • Enter that and Save Changes


So What's Up

Automatically Publishing Blogger Posts to Social Networking Sites will certainly help you to generate a flood of traffic to your Blog,as i mentioned never underestimate the Social Websites,because you can get alot of traffic to your Blog,However if you apply this service to your Blog,i am sure you will get high traffic.

Question :- How to Apply this Service for Google +?
Answer :-   Actually Now when you post a Content on your blog,after Publishing Blogger Ask you for sharing that Post to Google + ,means they Provide this feature builtinly.

#A3

Komentar Terbaru

Just load it!