Navigation Menu Home made Post

fellow bloggers might want to create a navigation menu like that below his easy way

Halaman 1 dari 12: 12 3 4 Selanjutnya Akhir

buddy wrote directly into the
LAYOUT>>> EDIT HTML>>> ADD WIDGET / ADD ELEMENT PAGE) and Copas code below:

<style>
.showpageArea {padding: 0 2px;margin-top:10px;margin-bottom:10px;
}
.showpageArea a {border: 1px solid #505050;
color: #000000;font-weight:normal;
padding: 3px 6px !important;
padding: 1px 4px ;margin:0px 4px;
text-decoration: none;
}
.showpageArea a:hover {
font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;
}

.showpageNum a {border: 1px solid #505050;
color: #000000;font-weight:normal;
padding: 3px 6px !important;
padding: 1px 4px ;margin:0px 4px;
text-decoration: none;

}
.showpageNum a:hover {
font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;

}
.showpagePoint {font-size:11px;
padding: 2px 4px 2px 4px;
margin: 2px;
font-weight: bold;
border: 1px solid #333;
color: #fff;
background-color: #000000;


}

.showpage a:hover {font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;

}
.showpageNum a:link,.showpage a:link {
font-size:11px;
padding: 2px 4px 2px 4px;
margin: 2px;
text-decoration: none;
border: 1px solid #0066cc;
color: #0066cc;
background-color: #FFFFFF;}

.showpageNum a:hover {font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;
}
</style>



<script type="text/javascript">

function showpageCount(json) {
var thisUrl = location.href;
var htmlMap = new Array();
var isFirstPage = thisUrl.substring(thisUrl.length-14,thisUrl.length)==".blogspot.com/";
var isLablePage = thisUrl.indexOf("/search/label/")!=-1;
var isPage = thisUrl.indexOf("/search?updated")!=-1;
var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf("/search/label/")+14,thisUrl.length) : "";
thisLable = thisLable.indexOf("?")!=-1 ? thisLable.substr(0,thisLable.indexOf("?")) : thisLable;
var thisNum = 1;
var postNum=1;
var itemCount = 0;
var fFlag = 0;
var eFlag = 0;
var html= '';
var upPageHtml ='';
var downPageHtml ='';


var pageCount=7;
var displayPageNum=3;
var firstPageWord = 'Awal';
var endPageWord = 'Akhir';
var upPageWord ='Sebelumnya';
var downPageWord ='Selanjutnya';



var labelHtml = '<span class="showpageNum"><a href="/search/label/'+thisLable+'?&max-results='+pageCount+'">';

for(var i=0, post; post = json.feed.entry[i]; i++) {
var timestamp = post.published.$t.substr(0,10);
var title = post.title.$t;
if(isLablePage){
if(title!=''){
if(post.category){
for(var c=0, post_category; post_category = post.category[c]; c++) {
if(encodeURIComponent(post_category.term)==thisLable){
if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
if(thisUrl.indexOf(timestamp)!=-1 ){
thisNum = postNum;
}

postNum++;
htmlMap[htmlMap.length] = '/search/label/'+thisLable+'?updated-max='+timestamp+'T00%3A00%3A00%2B08%3A00&max-results='+pageCount;
}
}
}
}//end if(post.category){

itemCount++;
}

}else{
if(title!=''){
if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
if(thisUrl.indexOf(timestamp)!=-1 ){
thisNum = postNum;
}

if(title!='') postNum++;
htmlMap[htmlMap.length] = '/search?updated-max='+timestamp+'T00%3A00%3A00%2B08%3A00&max-results='+pageCount;
}
}
itemCount++;
}
}

for(var p =0;p< htmlMap.length;p++){
if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){
if(fFlag ==0 && p == thisNum-2){
if(thisNum==2){
if(isLablePage){
upPageHtml = labelHtml + upPageWord +'</a></span>';
}else{
upPageHtml = '<span class="showpage"><a href="/">'+ upPageWord +'</a></span>';
}
}else{
upPageHtml = '<span class="showpage"><a href="'+htmlMap[p]+'">'+ upPageWord +'</a></span>';
}

fFlag++;
}

if(p==(thisNum-1)){
html += ' <span class="showpagePoint"><u>'+thisNum+'</u></span>';
}else{
if(p==0){
if(isLablePage){
html = labelHtml+'1</a></span>';
}else{
html += '<span class="showpageNum"><a href="/">1</a></span>';
}
}else{
html += '<span class="showpageNum"><a href="'+htmlMap[p]+'">'+ (p+1) +' </a></span>';
}
}

if(eFlag ==0 && p == thisNum){
downPageHtml = '<span class="showpage"> <a href="'+htmlMap[p]+'">'+ downPageWord +'</a></span>';
eFlag++;
}
}//end if(p>=(thisNum-displayPageNum-1) && p<(thisNum+displayPageNum)){
}//end for(var p =0;p< htmlMap.length;p++){

if(thisNum>1){
if(!isLablePage){
html = '<span class="showpage"><a href="/">'+ firstPageWord +' </a></span>'+upPageHtml+' '+html +' ';
}else{
html = ''+labelHtml + firstPageWord +' </a></span>'+upPageHtml+' '+html +' ';
}
}

html = '<div class="showpageArea"><span style="padding: 2px 4px 2px 4px;margin: 2px 2px 2px 2px;border: 1px solid #333; background-" class="showpage">Halaman '+thisNum+' dari '+(postNum-1)+': </span>'+html;

if(thisNum<(postNum-1)){
html += downPageHtml;
html += '<span class="showpage"><a href="'+htmlMap[htmlMap.length-1]+'"> '+endPageWord+'</a></span>';
}

if(postNum==1) postNum++;
html += '</div>';

if(isPage || isFirstPage || isLablePage){
var pageArea = document.getElementsByName("pageArea");
var blogPager = document.getElementById("blog-pager");

if(postNum <= 2){
html ='';
}

for(var p =0;p< pageArea.length;p++){
pageArea[p].innerHTML = html;
}

if(pageArea&&pageArea.length>0){
html ='';
}

if(blogPager){
blogPager.innerHTML = html;
}
}

}
</script>

<script src="/feeds/posts/summary?alt=json-in-script&callback=showpageCount&max-results=99999" type="text/javascript"></script>
READ MORE ...

how to make a banner with the simple


The easy way to make a banner directly enter the picture, the image includes at least two or up to you just come in here and follow his ways after his input html code into your blog, and so your banner is ok good luck
READ MORE ...

How to Register Search Engine

For beginners may take the bloggers that if we create a website or blog will automatically indexed or are on the list of search engines, and in fact not the case. Just as a school, so that our names listed on the register of students, of course, we must first make application to the school. Similarly, search engines, so that our blog indexed in search engines, then we must first register our own blog on the site search engine owners.

Number of search engines is very much at all, and at this moment the most famous in the world is Google, Yahoo, and Msn. If we want to blog indexed on their search engines, then our duty is to register our blog URL in their search engine. If anyone did not know where to register their blogs, so please refer to the following text:

# List of Google
To sign up to google, please visit http://www.google.com/addurl/ buddy, well if it had been on the signup page there are several steps that must be done, namely to fill in a form that provided:



* URL -> Content with blog URL pal.


* Comments -> Fill in the keyword or keywords associated with your blog buddies


* Fill the empty box with the available verification letter


* Click the Add URL


* Done.



After registering to my friend Google, it does not necessarily blog buddies indexed on its search engine, but requires 3 to 4 weeks a new blog can be indexed pal. If you have 3 to 4 weeks, then try to type the blog address on my friend google search engine, if it is indexed or not? if not, try waiting a few weeks, and write back to your blog address mate, If it is still not well, try again deh daftarin his blog to google like a step above. Or maybe my friend can not wait to indexed, this could actually happen, only in 3 or 4 days my friend's blog can be indexed in google. Want to know how? Just refer to the next post, maybe one or two days to finish my next article created.



* List of Yahoo!



To sign up for yahoo! please buddy visit https: / / siteexplorer.search.yahoo.com / submit. However, to register to yahoo, my friend must first have a yahoo account, because the need to log in to your account first yahoo. For those who do not have a yahoo account (email on yahoo) please make a first, for those who already have, my friend lived login with username and password pal. If already logged in, will have available columns for the contents, please fill in the URL field with my friend, then click the Add URL, finished. If you want to enter a feed address and gentlemen, my friend could be putting. Remember, feed address in blogger atom.xml just add the URL behind the blog buddies, for example: for my blog has the following feed address:

http://my tutorial date/atom.xml

or use the www was the same:

http://www.my tutorial date.com/atom.xml



* Register to Msn



For a list of the Msn, please visit our pal pal http://search.msn.com/docs/submit.aspx?FORM=WSDD2 please verify the contents of the letter and the URL of buddies on the box provided, then click the Submit button URL, finished.

If my friend had more desires, which my friend blog's URL in the tens of indexed search engine, my friend could use the help submitter site. Try just click the banner below:

Submit Your Site To The Web's Top 50 Search Engines for Free!

Pal task of filling only the URL address of his blog, and just write an email address, then click the Submit Your Site.

If you want faster famous try pinging the kinds of aggregators, please click the link below:

Ping-O-Matic

My friend who lives in filling out the form provided.
By KR
READ MORE ...

CREATE MARQUEE EFFECTS

What is a marquee? Marquee is a program HTML to create text to move or walk. Marquee program is much in demand and in use by the bloggers on the blog because of the nature of this program is dynamic and interesting to see as well to save space on the blog page.

This marquee can be made by using the tag ....

Attributes that are often in use are:

BGCOLOR = "color" -> To set the background color (background) the text

DIRECTION = "left / right / up / down" -> Set the text direction of movement

BEHAVIOR = "scroll / slide / alternate" -> To set the movement behavior

Scroll -> moving text rotates
Slide -> move the text once and then stopped
Alternate -> text moves from left kekanan then back again (back and forth bo)

TITLE = 'message "-> message will appear when the mouse is hovering over the text

SCROLLMOUNT = "number" -> set the speed of movement in pixels, the greater the number semajin fast movements.

SCROLLDELAY = "number" -> To set the delay time in milli-second movement

LOOP = "number | -1 | infinite" -> Set the number of loops

WIDTH = "width" -> Set the width of the text block in pixels or percent

To be more clear I will include for example:

Marquee example of the movement:

<marquee Align="left" direction="right" height="200" scrollamount="2" width="30%">

marquee from right to left

</ Marquee>

results:

marquee from right to left
replacing the word "left" to your desire is to: left, up, down.

Example marquee of movement behavior:

<marquee Align="left" direction="left" height="200" scrollamount="3" width="70%" behavior="alternate">

marquee behavior according to

</ Marquee>

marquee behavior according to

Example marquee with a variety of letters and background color:

<div align="left"> & ltFONT FACE = "georgia" color = "White"> <B> <marquee BGCOLOR="RED" width="70%" scrollamount="3" behavior="alternate">

</ Marquee> </ b> </ b> </ div>

results:

marquee with a variety of letters


There are other variations of this marquee, when the mouse was in the area of text marquee will stop and when the mouse is moved back to another place then the text will move again, this only add some marquee programs in the field.

For example, please point your mouse to marquee area below:

<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="2" direction="up" width="50%" height="200" align="center">

please show up here

</ marquee>

results:

please show up here

Examples in the marquee which it has links:

<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="2" direction="up" width="100%" height="100" align="center">

<a href="http://rubrik-elektronik.blogspot.com" target="new"> Electronic Rubric </ a> <br/>

<a href="http://electronic-rubric.blogspot.com" target="new"> Electronic Rubric </ a> <br/>

<a target="new"> Column href="http://kolom-iklan.blogspot.com" ads </ a> <br/>

</ marquee>

results: Free Template

Advertising column

Kang Rohman



Maybe it was just a few examples that can be given, please manipulate your own brain in order to create variations on this marquee.

ok good to try BY KR
READ MORE ...

CHANGING THE VIEW WITH THE BANNER READMORE

You have to do is

1. Please login to blogger with your ID.
2. Click Layout.
3. Click the Edit HTML tab.
4. Pd Tick the little box next to "Expand Widget Templates"
5. Find similar code like this:


<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <! - clear for photos floats ->
</ div>


6. Please replace the above code with
Examples like this:

<b:if cond='data:post.hasJumpLink'>
<div class='jump-link'>
<a expr:href='data:post.url + "#more"'>

<img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAEg8Ta4Yr8RMx5AOMXsGpmcAfuoULDuoIT303h9Gi_QWQuTSX46H_r2Q4sF8_xzTb6WYR8JmVb-ZT09NHGMxSStyXCqiEOMrplXm6qXEpkBq7aKF82BJBWg8hDmunTDS-tMPkobuCAtI/[1].png' alt='read more'/> </ a>

</ div>
</ b: if>

7. Click the Save button TEMPLATE
8. Done.

Views readmore you will be a new
READ MORE ...

HOW TO REMOVE THE SHOUTBOX / COMMENTS MIX FULL

How:
1. Log In Admin in the Shoutbox.
2. Click the General Settings Locate the click prune messages.
3. Reserving select 10 posts (for all) or delete all,
Examples of such choices:
Messages pruning

1. Keep latest 10 posts and delete the rest
2. Keep latest 30 posts and delete the rest
3. Keep latest 60 posts and delete the rest
4. Keep latest 100 posts and delete the rest
5. Keep latest 200 posts and delete the rest
6. Keep latest 300 posts and delete the rest
7. Delete all messages in my shoutbox

Confirmation

# Enter your password:
4. Click Settings Aplly.
5. Done.
ok you stay restart your blog and will have a new display your shoutmik
READ MORE ...

DISPLAYING THE COMMENT BOX DISAPPEARS

You find a problem in your comment box, if you are still the original template easy

1. you login to blogger
2. click on the settings tab
3. click the comment tab and then navigate to the placement krusor your comments on the form put a hook in the entry below.
4. click save settings.
5. done.

But what if still does not appear on your blog!
easy to change the data you live in it alone html


The way you went back to the layout and then will perform the edit room htmlnya
before you start working on a template brain you must click on the tab to download the complete template just in case you enter the code wrong then there is a small box expand widget templates and then you check the small box is wait a while until the process is complete.
then you find code like this in the HTML box

<p class='comment-footer'>

<b:if cond='data:post.allowComments'>

<a expr: href = 'data: post.addCommentUrl'
expr: onclick = 'data: post.addCommentOnclick'> <data:postCommentMsg/> </ a>

</ b: if>


</ p>

remove the code above is replaced degan continues below code

<p class='comment-footer'>

<b:if cond='data:post.embedCommentForm'>

<b:include data='post' name='comment-form'/>

<b:else/>

<b:if cond='data:post.allowComments'>


<a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'> <data:postCommentMsg/> </ a>

</ b: if>

</ b: if>

</ p>

Finished but do not forget to save ok
READ MORE ...

CREATE THE NAVIGATION MENU UNDER THE HEADER

1. Log in first to your buddy blogspot.
2. KLik "Page Element" & Click "Edit HTML"
3. Centangkan "Expand Widget Templates"
4. Copy the code below and put it right above the code ]]></ b: skin>



. glossymenu (
position: relative;
padding: 0 0 0 34px;
margin: 0 auto 0 auto;
background: url (http://i730.photobucket.com/albums/ww306/gozhilaq/Menu-background-1.gif) repeat-x; / * tab background image path * /
height: 46px;
list-style: none;
)
. glossymenu li (
float: left;
)
. glossymenu li a (
float: left;
display: block;
color: # 000;
text-decoration: none;
font-family: sans-serif;
font-size: 11px;
font-weight: bold;
padding: 0 0 0 16px; / * Do not change this distance code * /
height: 46px;
line-height: 46px;
text-align: center;
cursor: pointer;
)
. glossymenu li a b (
float: left;
display: block;
padding: 0 20px 0 8px;
)
. glossymenu li.current a,. glossymenu li a: hover (
color: # fff;
background: url (http://i730.photobucket.com/albums/ww306/gozhilaq/Menu-kiri.gif) no-repeat;
background-position: left;
)
. glossymenu li.current ab,. glossymenu li a: hover b (
color: # fff;
background: url (http://i730.photobucket.com/albums/ww306/gozhilaq/Menu-kanan.gif) no-repeat top right;
)




5. Then copy the code below and put it right on top of the code <div id='content-wrapper'>

<ul class='glossymenu'>
<li class='current'> <a href='URL-Blog-Kamu'> <b> Home </ b> </ a> </ li>

<a href='URL-Link-Tujuan1'> <b>-Goal1 Title </ b> </ a> </ li>
<a href='URL-Link-Tujuan2'> <b>-Goal2 Title </ b> </ a> </ li>
<a href='URL-Link-Tujuan3'> <b>-Goal3 Title </ b> </ a> </ li>
<a href='URL-Link-Tujuan4'> <b>-Goal4 Title </ b> </ a> </ li>
<a href='URL-Link-Tujuan5'> <b>-Tujuan5 Title </ b> </ a> </ li>
<a href='URL-Link-Tujuan6'> <b>-Tujuan6 Title </ b> </ a> </ li>
<a href='URL-Link-Tujuan7'> <b>-Tujuan7 Title </ b> </ a> </ li>

</ ul>



In the red text you fill in the url desired goal.
In the blue text that you fill in the title match of the destination of the link.

Example: <a href='http://sibatman.blogspot.com'> <b> Tutorial </ b> </ a> </ li>

And so on .....

6. Save then see the results

7. Done
READ MORE ...

HOW TO MAKE READMORE

1. Sign in to Layout - Edit HTML.

2. Love the check (tick) on cekbox "expand widget templates"

3. Look for this code in your blog template (approximately where the 1 / 4 the lower part of html code):

<div class='post-body entry-content'>
See the reply there is a code underneath it:
<p> <data:post.body/> </ p>


4. If you've met, remove this code <p> <data:post.body/> </ p>
replaced with a like this:
<b:if cond='data:blog.pageType == "item"'>
<style>. fullpost (display: inline;) </ style>
<p> <data:post.body/> </ p>
<b:else/>
<style>. fullpost (display: none;) </ style>

<p> <data:post.body/> </ p>

<a expr:href='data:post.url'> Read More ......</ a>
</ b: if>

Writing "Read More ....." It can be changed, such as a "Read More".

5. Save edits.
6. Then select the Settings menu and select Formatting
7. In the Post Template box insert the following code:
<span class="fullpost">

</ p>

8. Then Save.

9. When posting, there is 2 option tab, the "Compose" and "Edit Html", select the "Edit HTML", then automatically the code would look like the following:
<span class="fullpost">

</ p>
10. Put abstraction posts or articles that will appear the main yard (before the words "Readmore") above this code: <span class="fullpost">
while the remainder is placed in the overall post between <span class="fullpost"> code and </ span>

11. Done. Please check the results.
READ MORE ...

CHOOSE TEMPLATE BLOGGER

For those of you who have done some of the settings as the previous post, the next step you need to do is select a template. Glance is a template template designs web pages or blog and all its components (eg images, stylesheets, etc.) file either static or dynamic files that a program or application running as a web application. As you can see now, as the banner above, white background, the columns on the right side, and all the buddies see now is one form of the template design. Selecting a beautiful template is necessary, because the view is interesting template for the view it will make the visitors of our blog to be at home for a long time in our blog but of course the content of our blogs are also very supportive.

* Please login first as usual by using the user name belongs to you

* Click the "Layout" (if you use the new blogger), or click the "Template" (if you use classic template).

* Click "Pick New Template", please select the template that you like. Before deciding to select "template" is, you should see the first one at which the sample layout provided a way to click on "preview template". If the taste has found the most you like, please click on "Save template" which is on the right top FINISH
READ MORE ...

HOW SETTING IN BLOGGER BLOG

For those new to blogs, there are some settings / preferences that should be done so that we can blog on search engines such recognizable Google, Yahoo, Msn and friends another. If you do not know what to in the settings, please follow these steps:

1. Please Login to blogger.com with a user name and password of your
2. Click the blog title is not in the settings (if you already have several blogs)
3. Click Settings, click Basic trus. Some form must be filled in the Basic menu:

* Title ⇒ content with your blog title. Example: Blogspot Tutorial

* Description ⇒ content with your blog description. Example: Here we will share experiences and knowledge about the Blog

* Add your blog to our list? ⇒ select yes for each post we always go in the list of Blogger.com.

* Let the search engines find your blog? ⇒ select yes

* Show Quick Editing on your Blog? ⇒ select Yes

* Show Email Post Links? ⇒ should select yes, but choose not too fine

* Adult Content? ⇒ Select no. If you select yes means your blog is considered a blog for adults (a kind of porn blog)

* Show Compose Mode for all of your blog? ⇒ select Yes

* Enable transliteration? ⇒ select No, if you want a button to change the letters used to Hindi (India), select yes if otherwise)

* Click the Save Settings button. Done

4. Click to set the menu Publications Publications:

* Address BlogSpot ⇒ fill in the name of your blog. Example: column-tutorial. Usually the address listed is the direct address of your blog, so do the change aja.

* Click tombolSimpan settings. Done

5. Click the Format menu to set the format:

* See ⇒ select the number of posts you want to display. Missal: Display: 6 posts, then post that will appear in the page blog buddy is a total of six posts. Select the post (not days) in the pulldown menu.

* Date Header Format ⇒ Choose the date / month you like, format the date / month it will always appear on our posts.

* Format date Archive Index ⇒ select the model for lawyer-an archive that you like.

* Timestamp Format ⇒ Select the form of time you like.

* Time Zone ⇒ Select the appropriate time zone. Example for WIT: [UTC-+7.00] Asia / Jakarta.

* Language ⇒ Select the desired language.

* See Field title ⇒ Select yes
or tidakpun okay

* Show column links ⇒ select yes, but if choose not too fine.

* Enable float alignment ⇒ select yes, but if want to select is not too fine

* Click the Save Settings button. Done

6. Click on Comments To set the menu comments:

* Comments ⇒ select the show, is that your articles can be commented by the visitors

* Who Can Commenting? ⇒ Choose Anyone - includes Anonymous user. This meant that everyone could comment not limited to members only blogspot.

* Default to post comments ⇒ select a new post has a comment.

* Link back ⇒ Select the display. This meant that we know if there is put a link on our article.

* Backlinks Default for Posts ⇒ select a new post Have Backlinks.

* The format of Timestamp Comments ⇒ select the format hour short cut. Example: 8:00 PM.

* See comments in a popup window? ⇒ select Yes. So that when the clicks by visitors, your blog page does not disappear / komntar affected page.

* Enable comment moderation? ⇒ select (should be).

* Show word verification for comments? ⇒ select Yes. This in intended to avoid the robot software in order to spam.

* Show profile images on comments? ⇒ select yes. So the picture commentators have en blogger wrote, can display the picture.

* Email Notification Comments dg ⇒ contents your email address, this meant that every one commented on your article, you can post an email from blogger.com as notification.

* Click the Save Settings button. Done

7. Click Archive Archive To set the menu:

* Frequency Monthly Archive ⇒ select.

* Enable Post Pages? ⇒ select yes.

* Click the Save Settings button. Done.

8. Click Sites to regulate Fedd menu site feed:

* Allow Blog Feed ⇒ select Full.

* Post URL ⇒ Changing the Direction of Feed in a feed content to address such penggati feed address of the feed burner, if you do not have, in clear only.

* Post Feed Footer ⇒ Please fill in the ad code you have, for example code from the Google Adsense ads, etc., but if you do not have, please empty it.

* Click the Save Changes button. Done.

Now you can see the results with the first change from your blog
READ MORE ...

HOW TO CREATE A BLOG ON BLOGGER

Maybe one of you who still do not understand about making a blog on blogger the easy way
First please click on the banner below




1. Click the arrow that says "CREATE YOUR BLOG"


2. Fill in the email address with your email address (must be valid)


3. Fill in your return email address was in the form Retype email address


4. Write down the password you want to form Enter a password


5. Fill in your password again in this form Retype password (password)


6. Fill Display Name with the name you want to show


7. Write an article which is listed on the Word Verification form. Put a tick / check the box on the edge of writing and I accept the Terms of Service.


8. Click image arrows labeled "CONTINUE"


9. Write a blog title that you want (will be on fox again) in the form Title Blog


10. Write the name of your site in the form Blog Address (URL)


11. Write the verification text that is displayed on the verification form, if it is finished click the arrow that says "CONTINUE".


12. Choose an image (template) that you want (will be on fox again), then click the arrow that says "CONTINUE"


13. After leaving the words "Your blog has been in iptakan". Click the arrow labeled "START POSTING". Please write down all you want, when you finish, click the "publis POST".



3. Contents (Content) blog:

For starters, they are usually confused after making a list of what to blog on the contents (posted) in a blog. Contents (content) from a blog, of course, is up to the owner's own blog, if not the content of the poem, the journey of life, engineering, or whatever. Well here I am suggesting, fill your blog with interest or hobby and your own expertise, since of course out there a lot of the same people who would interest her, and your hobby, so they will be interested to read your writings.

Hope can help.
READ MORE ...
Ping your blog, website, or RSS feed for Free