How to Add Code and Make Twists in Blogger

.

qadabra banner

Saturday, March 23, 2013

Blogs are like Magazines

Blogs are like Magazines 


You can have good writing posts and blogs that really attract big audiences.
Blogs are newspapers and magazines,and therefore they should be treated with a publisher  writer and editor point of vue.
Take a mag that deals with the same subject of your blog and study it ,analyze it and make your blog looks like it. It is the only way to get a well established blog that people will like to return to and get information and entertainment from 

Following the rules of  the written press, is the best way to get readers for your blog.


Here are the best 9 tips I use to write my blogs.


1- Links
2- Paragraphs
3- Headlines
4- Lists
5- Sub headers
6- Style
7- Keywords
8- Advertisings           
9- Pictures
 
1. Link,link,link.

Support your post with links to other web pages that are contextual to your post. In the press these links could be ads or shops, books and links to other articles or pages etc... On the web these links must be well established blogs or sites dealing with the subject.

2. 300 is enough = Paragraphs
 
A short post is more informative. Think about the articles in a mag: if you want to put a long article you just divide it to paragraphs with subtitles and even new headlines.

3. Make Headlines keywords that will strike on search engines and web search

When you pass a mag booth  or a bookshop you see the titles instantly and you can choose your best mag directly.On the web it is the same: the title is the first thing the web search will show you. And this is the portal for your web traffic.
Contain your whole argument in your headline. Check out newspapers to see how they do it.

4. Include bullet point lists

We all love lists, it structures the info in an easily  format. Women and cuisine mags always put their results and receipes in lists with bullets. it is the only way to remember a structured how to.

5. Make your posts easy to scan by making more sub headers = make more sub heading= more scans

Every few paragraphs insert a sub heading. Make sentences and headlines short and to the point. Headlines shouldn't have "the" or "a" at the begining and must be short example: BLOGS FOR MONEY and not THE BLOGS FOR MAKING MONEY

6. Have a style with your headings and be consistent with your style in the article, and threw all the posts of the blog.

People like to discover a style when reading and therefore , what to expect from this style.Once you have settled on a style for your audience, AND YOU SEE THAT THIS IS GETTING YOU VISITORS AND SUPPORT, stick to it.

7. Keywords the posts.

Think about what keywords people would use to search for your post and include them in the body text and headers. make sure the keyword placement is natural and does not seem out of place. One Tool for effective Keywords is Google Adwords Tools like
Traffic Estimator or Keyword Tool.

8 . Advertising on your blog

Putting Ads on your blog is one of the best ways to prove that you are a publisher and that your blog is informative and at the same time well ranked for advertisers to use it as publishing platform.

9. Pictures like to make it more interesting

Pictures are a must for publishing news papers and mags. You are not writing a book but articles so the blog must be enhanced with fotos to make it colorful and attractive

So blogs are like magazines : they rely on articles

All articles in  newspaper and mags are made to attract readers, therefore all articles contain keywords taken from real life that people like to refer to. Keywords are the words people like to say when they speak about a subject, and tend not to forget. They are for example easy to spell when you forget other complicated words when you are in a discussion.

Thursday, March 7, 2013

Creating more empty space between lines and paragraphs

How to create an extra empty space between paragraphs

If you want to create an extra empty space between paragraphs, all you have to do is add <br /> code after each paragraph.
If one doesn’t do the trick for you, then add another and another, as much as you need.

Open the blog editor in HTML choice
Add one or more  <br />  at the end of the paragraph ( usually after an existing   <br />)

Like this:

<br />
<br />
<br />

How to Add a Horizontal Line to Blogger Blogspot Post


How to Add a Horizontal Line (Rule) to Blogger Blogspot Post 

An option that the latest visual Blogger's post editor is lacking is the "Insert horizontal line" option

A horizontal line (or, horizontal rule) is a line which can be
  • with different length (or width),
  • aligned on the left, at the center, or on the right,
  • with different thickens (or size), 
  • with different color, 
  • solid, dashed, dotted etc.
To add a horizontal line in a Blogger Blogspot post, you have to copy and past code through the HTML editor:
(When writing a post there is two alternatives at the left side of the post editor menu : Compose and HTML)

 Below are some HTML code examples for horizontal line.

Adding Horizontal Line with the HTML <hr> Tag

1. The Basic <hr> Tag

The code:
<hr>

The visual result:


2. Additional Attributes for the <hr> Tag

The code for a horizontal line with added attributes is 
<hr align="center" color="green" size="2" width="80%">

  • The align attribute should be added to the code if the width of the horizontal line is less than the text width. Values for this attribute are: left, center or right.
  • The width attribute should be added to the code if you want a horizontal line with a width is less than the text width. Values for this attribute can be expressed in pixels (e.g. 200px - you can skip the "px" after the number) or in percent (e.g. 50%).
  • The color attribute should be added to the code if you want a colored horizontal line. Values for this attribute can be express as a color name (e.g. red green, blue, orange - for additional HTML color names check any of these links: link 1, link 2, link 3, link 4) or the color's hex code (we recommend the Multitoolbox's Color picker and this simple "hex to rgb" and "rgb to hex" code converter)
  • The size attribute should be added to the code if you want a thicker horizontal line. Values for this attribute are 1, 2, 3, etc.

Example 1
The code: 
<hr align="right" color="orange" size="3" width="500">

The visual result:



Example 2
The code: 
<hr align="center" color="#ff1100" size="5" width="60%">

The visual result:



Example 3
The code: 
<hr size="5">

The visual result is :



Example 4
The code: 
<hr size="5" color="#999999">

The visual result:



Example 5
The code: 
<hr color="green" width="45%">

The visual result: