Skip to main content

Blogger : How To Create Blog Through Blogger & Its Overview

Overview Of Creation Of Blog

Now days online learning and earning is very popular. Most of the people is trying to either learn or earn from their home. If you are a writer or story teller, you have interest in writing or reading new thing. So, This is very helpful for you, in this post i will tell you how to create your own blog website and earn money.

Step follow to create a blog on blogger:-

First you should have a email account and phone number to open or create a blogging account. You have to go to blogger website page, URL of that page is given below, simply you go and click on the URL.

Click on the create new blog, after clicking, you have enter the blog name that you want to show to the user and you must choose or set the appropriate your own blog URL.

After this process, you will have created your blog. You can handle everything post, pages, layout, inside the setting,you can set the user information and the account information. In the layout you can set layout from the given design.

Important thing about the blog, you must have 3 pages in your blog such as Privacy Policy, About Us, Contact Us. These are the most important pages of your blog. If you want to show ads on the blog, you must create these pages on your blog.

Qualification for  Google AdSense:-

All set you have to create at least 15 post to qualify for the Google AdSense. when you get conformation to be monetization the google Ads, you can see in the Earning section of the blog. You have to click to create AdSense account which is provided by the google and keep in mind enter details correctly because you can create only one account and read the policy of the google AdSense carefully otherwise you will be in problem. If your AdSense account got blocked you can not able to get back.

Whenever i got your AdSense account, You can show ads on your posts. You have to copy the code which is provided by the Google AdSense and paste in the post of the head section of your blog post.
This Google AdSense process can take 1 month or up to 3 months. So create as much you can create the valuable posts on your blog and do try to copy.

Important Pages:-

Note:- You must have 3 pages in your blog such as Privacy Policy, About Us, Contact Us. These are the most important pages of your blog. If you want to show ads on the blog, you must create these pages on your blog. If These pages are absent in your blog then there will be problem for the approval of the Google Ads.
 

Comments

Popular posts from this blog

Merge Arrays : Merge Two Arrays Of Different Size In C++

Merge Two Arrays C++ Program C++ program to merge two arrays of different size. First array size is m and second array size is n. The size of the first array is greater than the first array i.e. m>n.                               Algorithm :- Enter the size of first array m. Enter the size of 2nd array n. Enter the elements of 1st and 2nd array and number of elements of first array should be greater than the number of elements of second array. After m index of first array, insert the element of second array into the first array up to m+n-1. Sort the merge array of size m+n. Display the first array, which will display all the elements of the merge array of size m+n. Program: - #include<iostream> using namespace std; int main() { int i,n,m,a[15],b[5],j;//array a[] and b[] are declared cout<<"Enter the size 1st array:-"<<endl; cin>>m; cout<<"Enter the size of 2nd array(n<m...

C++ Vector : Basics Of Vector in C++ STL

In C++, Vector is unlike array, it stores different data types such as int, double, string, float, etc. It works like the dynamic array with the ability to resize automatically itself. Vector stores data in the contiguous memory location. Two functions are needed to traverse from starting to end that is begin() and end() functions.                               Syntax of the vector declaration:-             vector<data_type> variable_name (number_of_elements);  Here number_of_elements is optional, we can also declare a vector with empty vector that contains zero elements. The data_type in the angle-brackets indicates any type of data type which is valid in c++. Vector declaration examples:- vector<int> numbers (10); //In this example, we declared a vector name number of 10 integers. vector<string> names;  //In this, a vector name declared of string. In eve...

Data Structure And Algorithm Important Topics Overview

  Overview Of Data Structures And Algorithms This post will give you the clear idea about learning data structures and algorithms . So, Data structure? => In computer science a data structure is a data organization , management and storage format that enables efficient access and modification. Or in the other words it is a way in which data is stored on a computer. Types of data structures:- Array  String Stack Queue Linked List  Binary Tree Binary Search Tree Heap Hash Table Graph Above topics, array is a linear data structure which stores the data in the sequence order, dynamic array, every data is stored in the next contiguous memory location.   String is a collection of characters. If it contains the alphabets and it also uses the digit as character. If a string is composed of numbers and characters then numbers are also treated as characters. Stack is also a linear data structure. It works either on Last In First Out or First In Last Out . It has only one ...