Skip to main content

How to Start a Blog on Blogger/How to start Blogging Guide for Beginners






How to Start a Blog on Blogger



Steps


Blogger is an online service owned by Google that publishes single or multi-user blogs created entirely by the user. The service has quickly become the preferred choice of many novice bloggers and is one of the easiest methods of creating and publishing a blog for free. If you are unfamiliar with the service, this article will teach you how to set up an account and create a blog on Blogger.com.
























  1. Start a Blog on Blogger Step 1.jpg


    1


    Navigate to www.blogger.com using your web browser of choice.




    Ad







  2. Start a Blog on Blogger Step 2.jpg


    2


    Sign in using your Google Account to get started.





  3. Start a Blog on Blogger Step 3.jpg


    3


    If you do not have a Google Account, click “Get Started” to create one.





  4. Start a Blog on Blogger Step 4.jpg


    4


    Enter a “Display Name” to be used to sign your blog posts and click “Continue”.





  5. 5


    Click “Create Your Blog Now”


    Start a Blog on Blogger Step 5.jpg







  6. Start a Blog on Blogger Step 6.jpg


    6


    Select a “Blog title” and an available URL for your blog. You can check if the URL you are considering is available by clicking "Check Availability".





  7. Start a Blog on Blogger Step 7.jpg


    7


    Enter the word verification and click continue.





  8. Start a Blog on Blogger Step 8.jpg


    8


    Choose a starter template, which will act as the basic design/layout of your blog.





  9. Start a Blog on Blogger Step 9.jpg


    9


    Click “Start Blogging”





  10. Start a Blog on Blogger Step 10.jpg


    10


    You can create new blog posts, edit posts, and edit pages from under the “Posting” tab.





  11. Start a Blog on Blogger Step 11.jpg


    11


    The title of your post goes in the text box next to “Title”.





  12. Start a Blog on Blogger Step 12.jpg


    12


    The body of your post will get entered into the “Compose” text editor, where you will also be able to access basic text editor functions such as font size, text color, the ability to insert links.





  13. Start a Blog on Blogger Step 13.jpg


    13


    You can also use the “Edit HTML” tab to insert your post in HTML format, if you prefer.





  14. Start a Blog on Blogger Step 14.jpg


    14


    The “Post Options” section located underneath the “Compose” text editor will allow you to enable reader comments, HTML settings, and post the time and date.





  15. Start a Blog on Blogger Step 15.jpg


    15


    You can now either select “Save Now” to save your post, “Preview” to preview your post before publishing to your blog, or “Publish Post” to publish your post directly to your newly created blog.





  16. Start a Blog on Blogger Step 16.jpg


    16


    If you wish to change the design of your blog from the starter template you selected when initially creating your blog, you can do so under the “Design” tab.





  17. Start a Blog on Blogger Step 17.jpg


    17


    From within the “Design Tab” you will be able to edit Page Elements, HTML, and change your template with Temple Designer.





  18. Start a Blog on Blogger Step 18.jpg


    18


    If you want to adjust other settings such as who is able to view, contribute to, or comment on your blog etc, click the “Settings” tab.





  19. 19


    You can adjust publishing, comments, archiving, permissions, and all other settings from within the sub-tabs located under the main “Settings” tab.





  20. 20


    You can add new authors that are able to contribute to and edit your blog by clicking the “Settings” tab> “Permissions” sub-tab, and selecting “Add Authors”.






Comments

Popular posts from this blog

Bouncy Content Filter for big Website

This space-saving content filter allows the users to switch from one category to the other in a fancy way! Each click fires the rotation of the gallery images, revealing the items belonging to the selected category. Content filters  are particularly useful for big websites, where each pixel counts. Lets say you are showing the “ last products ” of your e-commerce . How about giving the users the option to switch to the “most popular” products without a page refresh? A good solution could be to hide the “most popular” items right behind the “last products”, then use the power of CSS3 3D Transforms to rotate the items when the user switches from one option to the other. The bounce effect is optional, but you get the idea! The rotation won’t work on older browsers like IE9, but the experience won’t be broken – just a display on/off with no transitions. Lets dive into the code! Creating the structure We wrapped the filter into a <nav> element. The filter structur...

Content slider with Zoom Effect for a predefined area in each slide

Zoom Slider Today’s Blueprint is a simple content slider with depth-like zoom functionality. Each slide has a predefined zoom area that will be used to calculate the appropriate scale value for a fullscreen fill. Once the icon for zooming is clicked, the zoom area as well as the page get scaled, creating the illusion that the viewer is approaching the item. Once the whole page is covered, we show some more details. Navigating the slider will animate the inner parts of the slide, allowing for an independent control of the image area and the title. We are using CSS transitions and dymanic.js for moving the slide elements. Dymanic.js by MichaĆ«l Villar is a JavaScript library to create physics-based animations. Please note that we are using a couple of modern CSS properties, so only contemporary browsers are supported. The HTML <!-- Main container --> <div class="container"> <!-- Blueprint header --> <header class="bp-header cf"> ...

An AJAX Based Shopping Cart with Drap Drop Item Effect

An AJAX Based Shopping Cart In this tutorial we will create an AJAX Based Shopping Cart with Drag and Drop feature.You can easily use this shopping cart in you store.All the products are going to be stored in a MySQL database, with PHP showing and processing the data. So go ahead, download the demo files and start reading. Step 1 – the MySQL Database If you want to set up a working demo, you’ll need to execute the following SQL code in your database manager (e.g. phpMyAdmin). It will set up the table and insert a few products. The code is also available in table.sql in the demo files. table.sql CREATE TABLE IF NOT EXISTS `internet_shop` ( `id` int ( 6 ) NOT NULL auto_increment, `img` varchar ( 32 ) collate utf8_unicode_ci NOT NULL default '' , `name` varchar ( 64 ) collate utf8_unicode_ci NOT NULL default '' , `description` text collate utf8_unicode_ci NOT NULL , `price` double NOT NULL default '0' , PRIMARY K...