You can access this blog via Cell Phones by typing the address http://dwi-r3tno.blogspot.com/?m=1
"Want to increase traffic and visitors your web popularity fast and unlimited ...? ... Leave it to me ..., I'll do it for you FREE ...! ...click Here-1 anda here-2"

Tuesday, August 23, 2011

Heello, Social Networking Sites Like Twitter & Facebook


Probably not many people know about Heello.com, I just found out about this Heello social networking sites.
numbers in the beginning we open the website then we will not be foreign, because it looks not too much different with twitter, with a simple design that makes this site very easy and fast to access.

Some say that Heello is a clone of Twitter. There are three terms are almost the same with Twitter. Tweets = Pings, Follower = Listener, and Following = Listening. and some are saying Heello have facilities similar to Facebook.




if you want to try it, please visit the site directly at the address http://heello.com

 

Add Facebook Profile to Your Blog

Surely you know what is Facebook, because Facebook is not foreign in our world, even in the streets or in Television broadcasting was almost every second we see the symbol facebook. in the article I wrote this, I will try to add that you have a Facebook profile into a blog or website you, the way is very easy, follow Steps below.

1. Log in to your facebook
2. then click on profile menu
3. See the bottom left click on create profile badge
4. you could then edit by clicking the edit this badge
5. there are several choices in layout "portrait, landscape, two columns", select one and then the column contents Profile photos, names, Network, etc..
6. select the status you want to show
7. then save
8. after that there were several options to add the badge had been to various sites including "Blogger
, Typepad, other
" Choose and click one. Let bloggers.
9. Once you click, you will be brought to the bloggers to add widgets that was. you will be prompted to log into your account

blogspot. if so, please save it and see the results change.

Add Twitter Widget on Your Blog

Today I want to try to give information about adding widget twitter on blogspot. for an explanation of twitter you may already know all, so it does not talk about Twitter. to install the twitter widget on blogspot, please follow

the steps below:
1. please log in to your twitter account
2. then go to "settings"

3. then click the "Profile"
4. subsequent search for the words "Have a homepage or a blog? Put the address here. (You can also add Twitter to your site here) ", please click are in parentheses

5. then we will be taken to the page "http://twitter.com/about/resources", and bring up several options,among which "Widgets", as shown below: Please select only "See All Widgets"

6. and select the "My Website"
7. Then click on "Profile Widget"

8. then you will go to the "Customize Your Profile Widgets ", there are several menu customization (setting) there. Fill in the fields settings with your Twitter username. Preference arrangements features on the widget, the widget Appearance with the display settings Twitter. please adjust the blog to make it more interesting. dimensions use the menu to set the size of the widget.
9. if it is in conformity with the one you need, please click "Finish & Grab Code"
10. next up the code that we will enter into "widgets" on Your blog, copy the code.
11. If you have, you log into your account Blogspot.
12. go to the "Dashboard" and go to page "layout" and Click the "Add Gatget"
13. then select gatget "HTML / JavaScript" and Paste the code Twitter earlier, if it is click "Save"
14. if so, please go to your Blog and View results

Saturday, August 20, 2011

HTML Tags : Table

Previously been discussed several Tag-tag of HTML, this time I will try to give information about the Tag Table.

I want to tell you before, before when I was learning the basics of the website, I created a web framework using Table. but now I make a framework or design websites using DIV tags and CSS programming assistance. but in this article I have discussed about the DIV tag and CSS, but my first try to give information guide on Table tag.

To start the Tag Table, we can type commands <table> and ends with </ table>. but with such an order, you can not build a table, because the table has rows and columns, how do I make?

Create List
to create a line, we can provide additional <tr> command and ends with the command </ tr>
Ways of writing:
<table>
<tr>
</ tr>
</ table>

Creating Columns
to create columns, we can provide additional command in dalem <tr> with code <td> </ td>
<table>
<tr>
    <td> Row 1 </ td>
</ Tr>
</ Table>

The result as shown below:

with the above command, we have managed to create 1 row and 1 column. but with the above command we can not see the line of the table. to provide an outline / border, we can add a border = "pixel size" in the command <table>

Example:
<table border="1">
<tr>
  <td> Into Line 1 </ td>
</ Tr>
</ Table>

The result as shown below:

a. continue how to make the line more than 1?
b. and how to make more than one column?

Answer:
a. to create a new line, we can add <tr> command and ends the command </ tr> after the command <tr> </ tr> previous
Example:
<table border="1">
<tr>
<td> Row 1 Column 1 </ td>
</ Tr>
<tr>
<td> Row 2 Column 1 </ td>
</ Tr>
</ Table>

The result as shown below:


b. and to add a column in a row, you can add commands <td> and ends </ td> among <tr> command .... </ Tr>
Example:

<table border="1"><tr>
<td> Row 1 Column 1 </ td>
<td> Line 1 Column 2 </ td>
<td> Line 1 Column 3 </ td>
</ tr>
<tr>
<td> Row 2 Column 1 </ td>
<td> Row 2 Column 2 </ td>
<td> Row 2 Column 3 </ td>
</ tr>
<tr>
<td> Line 3 Column 1 </ td>
<td> Line 3 Column 2 </ td>
<td> Line 3 Column 3 </ td>
</ tr>
</ table>

The result as shown below:


MERGE ROW AND COLUMN
rowspan: This command serves to combine rows
colspan: This command serves to combine columns

ROWSPAN example:
<table border="1">
<tr>
<td rowspan="2"> Combined Results List </ td>
<td> Line 1 Column 2 </ td>
</ Tr>

<tr>
<td> Row 2 Column 2 </ td>
</ Tr>
</ Table>

Colspan example:

<table border="1">
<tr>
 <td colspan="2"> Combined ResultsColumn </ td>
</ Tr>

<tr>
<td> Row 2 Column 1 </ td>
<td> Row 2 Column 2 </ td>
</ Tr>
</ Table>



the case studies above there is a command rowspan = "2" and colspan = "2", mean 2 is the number of columns or rows to be in combination, if you want to combine the two columns, then you write colspan = "2", and others.

for further examples, please type the code below:

<table border="1" width="800" align="center">
<tr>
<td height="130" bgcolor="red" colspan="2"> Banner </ td>
</ Tr>
<tr>
<td align="center" width="200" valign="top" bgcolor="gray"> Main Menu </ td>
<td width="600" align="center" valign="top"> Section Content </ td>
</ Tr>
<tr>
<td height="70" bgcolor="red" colspan="2"> Footer </ td>
</ Tr>
</ Table>

and the results are as shown below:



Explanation:
a. In the script above, which means there is a command bgcolor background color you want to put on a certain line, you can also insert a background image on the table by inserting the command background = "image location".
b. There are also height and width which shows the height and width of a row and column, or maybe the table
c. align and valign, this command serves to set the position of the table and adjust the position of the contents in the table.

perhaps quite up here for an explanation of the table, actually there are many variations of the command table, please develop your own and maybe you can see on the site - other sites that provide information about a more complete table

Tuesday, August 9, 2011

HTML Tags : Center

the paragraph tag or <p> we can simply add the command Align = "center", align = "right" and align = "Left". but what if we do not use a paragraph tag?

we could use the tag center, but could only center alone, there is no tag left and right tags. way of writing is also not much different from the other tag, ie by the start command <center> and ends with the command </ center>, to be more clear, I give examples below.

<html>
<head>
 <title>Tag Learning Center </ title>
</ head>
<body>
This text without tags Center <br>
<center> This Text Using Tag Center </ center>
</ body>
</ html>

on a line of code above the existing commands <br>, yes to <br> you can read the previous article with the title
HTML tags : Break Row or < BR >

to result from the above code, you can see the picture below:


HTML Tags : Comments / Information

Records are part of the HTML code that is ignored by the browser. Usability notes / comments in the HTML code as a useful description for the code reader. For example, records are used to provide a record of anything and could even include a few lines.



<!-- This program was made on August 10, 2011 -->
<html>
<head>
<title> Hi </ title>
<body>
<!-- Notes can be placed anywhere -->
I Moderate Learning HTML
</ body>
</ html>

Record starting with the code <!-- And ends with code -->, this code will not tambil browser page, can only be seen if we open the code


Friday, August 5, 2011

Show or Hide the Captcha Code in a Comment on Blog

every person who has a blog or website would want an article written in the comment by others. because it feels like something is missing if we write an article without a comment.

but sometimes there is a problem why our blog or website visitors to send comments lazy because of "security code" or often called "code chaptcha". indeed when we register a blog at blogspot automatic comments in search facilities enable chaptca as to prevent SPAM or sending a comment that does not want the website owner.

chaptca code to disable the facility is very easy.
1. please login to your own blogspot account.
2. then go to the tab "Settings" and select the sub tab "Comments"

3. The next search facility "Show word verification for comments?"

4. if you have found please select "Yes" to enable and "No" to disable the facility code Chaptca
5. if it is, please save Settings

result, if you activate the code Chaptca As Figure Under this
If Not Then Enable Code Chaptca you will not appear on the article's comments

Thursday, August 4, 2011

HTML Tags: Paragraphs or < p >

before we have learned about the Tag <b>, we now proceed to study tag <p>.

Paragraph tag is a tag to create a paragraph element in an HTML document.
paragraph form of writing code like the example below:
<p> text text text text </ p>
writing paragraph begins with <p> and ends with </ p>

for more details, please see the example code below:
<html>
<head>
Learning <title> Paragraph Tag </ title>
</ head>
<body>
<p>
This is an example of the first paragraph, this is an example of the first paragraph, this is an example of the first paragraph, this is an example of the first paragraph, this is an example of the first paragraph,
</ p>

<p>
This is an example of the second paragraph, this is an example of the second paragraph, this is an example of the second paragraph, this is an example of the second paragraph, this is an example of the second paragraph,
</ p>

<p> This is the third paragraph </ p>
<p> this is the fourth paragraph </ p>
<p align="right"> This is the 5th paragraph </ p>
<p align="center"> This is a paragraph to 6 </ p>
</ body>
</ html>

after you type the code above, please save it as "paragrap.html", if it please you run it using a web brows,

results as shown below.

Wednesday, August 3, 2011

HTML tags : Break Row or < BR >

before you've learned how to write HTML programming, now we want to try any tags or code that can be put in the HTML Programming.

what is HTML tags?
When the web browser displays a web page, a web browser to read web pages from a text file and then look for special codes (in this case is the HTML tag) that is marked by the characters "<" and ">".

Row Break or <BR>
already obvious from its name is "Break Row" or replace the line, so its function is if we want to type a paper for example 2 lines or more, then we must add the command <BR>.
example:
if we write a script like below, then the result will be to the side, rather than fall to bottom:
<html>
<head>
 <title> Study Break Row </ title>
</ head>
<body>
Writing on the First Line
Writing On Line two
Writing On The Third Row
</ body>
</ html>



But If You Write Like Script Below, by appending the command <br> then the result will be 3 lines of Text

<html>
<head>
 <title> Study Break Row </ title>
</ head>
<body>
Writing on the First Line <br>
Writing On Line two <br>
Writing On The Third Row
</ body>
</ html>


OK, Up Here, Please try

Monday, August 1, 2011

Happy Fasting

Problem Singup Google Adsense from Blogspot

Please Help Me, I Have Problems When Using Google Adsense Registration Through Blogspot.com.
Beginning I login to Blogspot and Monetize Go to Tab, and I'm Trying to Sign up for Google Adsense Through Such Tab, and his statement "Google Adsense Registration Verification sent to Email". Finally, I immediately opened my email account and check if there is email from Google.

When I check it No email from google, I finally Retry tab access redeemable at my Blogspot account, then I tried to resubmit but what happens, even details such as the image appears below.



to all the friends who've experienced something like this, please help me by sending comments below
"Want to increase traffic and visitors your web popularity fast and unlimited ...? ... Leave it to me ..., I'll do it for you FREE ...! ...click Here-1 anda here-2"

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | cheap international voip calls