Skip to main content

What is Blogger? How we create a account on it.

What is Blogger? How we create a account on it.

Welcome to blog. Here I am talking about blog on blogger.com. Hope you guys like it, Thanks.

Here, I will talk about

Ø What is blog.

Ø About blogger.

Ø How to create an account on blogger.

Ø Can we earn money to blog.

What is Blog

Blog is a kind of platform, where you can write your thinking about that particular topic. Also you can say blog is article which we write through blogger.com and WordPress, etc. After writing the blog we go to publish in internet. If we write on a unique content hope traffic will came on our blog. You should write a blog on different topics like - Games, Technical, programming, Knowledge, education, and many more you like.


What is blogger.com   

Blogger is website that manages by Google. Google bought blogger from Pyra labs in 2003.Blogger is free for all, it give space to our passion in his platform. Around the world millions of peoples are used blogger daily and post something every seconds.

Here, using blogger you can also earn money. For this nothing to pay money to your pocket. It is widely used platform which give to user free sub domain name is blogspot.com. If someone want to remove sub domain name blogspot.com they will go to buy domain name.

How to create an account on blogger.com

First of fall, we should go blogger.com search in Google search bar. After open the site, you click on create option. After click on sign in button new page open of Google accounts. Here you will click on your Google account that you like to signup with blogger.

Write blog name


Here, after selecting account. new page open. here you enter name of your blog that will look in your blog page.show in upper image.

Next, type your address of blog. look my blog name- gyantoall9.blogspot.comIt is URL of your blog. Someone write your URL in search engine they directly come to your blog home page. After, creating account of blog, you should go to setting and complete them carefully.

Write here blog address


Can we earn money from blogger

Surely answer is, Yes you can make money through creating your personal blog. If you are student and you like part time job so blogger is good way for them. Here you create a unique post. peoples reaches to your post they like your post and slowly slowly traffic came on your blog then you should go for Google Adscene. Here you can apply for ads in blog, after successfully Ad-scene approval done you can start earning.

All Copyrights Reserved,these all words are my personal.I never copy someone article,all this content written by Gyan..

Thanks,To Visit Here.Follow For more Updates.If you like this post of About blogger.com please share it and comment.

Comments

Post a Comment

Popular posts from this blog

Control Statements in c language

So, Today we are going on new topic name control statements in C language. In which we read Looping(For, While and Do While), Jumping(Break, goto and Continue) and Decision Control statements(Switch, If, If Else and  If else if ladder)  in C. Before you read this article May you also like our previous posts :-    Structure Of C Language Program   Variables & Datatypes In C Language    Format Specifier In C Programming  .   It may help you to understanding it. A Statement is the smallest unit that is a complete instruction in itself statements contains expression and usually end with a semicolon. Statements are of two Types:- Types of Statements in C  1. Sequential Statement   2. Control Statement Sequential Statements are statements which are executed by one in sequential manner. Control Statements are the statements which alter the flow of execution and provide better control to the programme. On the flow of execution. The...

Array in C Language Btech Bca Notes

 Array in C Language Btech Bca Notes An array is a data form that can hold several values all of the same type. An array is a collection of variable of the same type that are referral to by a common name. Also Read:   Beginner our view on C programming Language  . Array are vital for most programming language. They are collection of variables, which we call elements. Each of the element in an array is stored sequentially in the computeric memory.  This making it easy to  m anipulate them and navigate among them. Since all the elements in an array are of same type, array allows us to represent a group of similar elements as an ordered  sequence  and work on them as a whole (grouping together related data). Array organize data in such a way that it can be easily sorted. To create an array, we use a declaration statement. An array declaration should indicate three things: 1. The type of value to be stored in each element. 2. The name of the array. 3. The ...

Format Specifier In C Programming Btech BCA Notes

   Format Specifier In C Programming Btech BCA Notes Welcome, Hope you are doing well. Today we are talking about Foramat specifier in C language. We can also say Type Specifier In C.  So, Today we are read formate specifier as well as printf and scanf Formats in different situations and different conditions. Before you read this article May you also like our previous posts :-    Beginner our view on C programming Language     Structure Of C Language Program   Variables & Datatypes In C Language  . It may help you to boost Your Information. In C Programming language, Types specifier is a special piece of code which is used during the input and output. Type specifier inform the compiler about the type of data which will be entered or displayed during an input output operation. Input mans reading data from keyword while output means displaying data either on screen or a printer. In c – Language every datatype has its own type specifier...