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...

Side Team Member Biography Resource

Use this team member biography resource to insert extended descriptions of your team members, with no need of dedicated pages or modal windows. Let the user meet your team and trust your company! Sometimes a picture and a role are not enough to completely describe a team member; you need a more detailed description to make your team “real”! But this requires space… and you can gain it using CSS3 transformations . Just give a look at the smart solution found by Aquatilis : the description enters from the side, just like mobile application behaviour, with no need of page reload. Creating the structure We created a #cd-team section containing our team members preview: <section id="cd-team" class="cd-section"> <div class="cd-container"> <h2>Our team</h2> <ul> <li> <a href="#0" data-type="member-1"> <figure><!-- .... --></figure> <div class=...

Pricing Table-Cross Reference Table for Website

Pricing Table-Cross Reference Table for Website.Tables are indispensable parts of web designs. They let you visually organise tabular content, distributing it on rows and columns. Although they are quite easy to design and code for large screens, things get more complicated on smaller devices. Whether it’s a subscription plan or a checkout process, you must deal with tables in your projects. And you must deal with responsiveness too. I’ve noticed some websites just cut off some columns to make their tables fits on a phone, but this solution doesn’t work in most cases (at least not if you need 5+ columns). I found this good example of a responsive table which inspired this resource: the list of features gets fixed on a side, allowing the user to horizontally scroll through the columns. Nice! Now why didn’t I use the HTML table structure , and instead went with unordered lists? It was difficult for me to make this resource responsive using proper table semantics (maybe an...