the master sells his vespa for marrying his wife

JAKARTA - Behind the black clothes and mystique that reflected from the self of Master Limbad, it turns out he had a unique experience about motorcycle. What is it? 
Apparently Master Limbad had to give up her beloved Vespa sold to propose his beloved wife Susi Indrawati.

"He used to have a Vespa but then sold to propose to me," said Susi when accompanied during his visit to Master Limbad okezone editorial last week.

Even though Susi admit that Master Limbad is verry love his Motorcycle, but Master Limbad still sold it, in worth of  500 thousand Rupiahs. the motorcycle is from year of 1966.

"The money he used for proposing me and he bought some snacks for the parents. This is the proove that Master Limbad did not want to bother his family," adds Susi.

That Vespa, according to her, is Master Limbad's ride favorite iron horse. "Eventought it's antique old but everything is still original, ranging from the lights, handlebars, body, everything is still original," he explained.

Now, after Master Limbad's successful, Susi disclosed her husband was trying to find the existence of these legendary motorcycles, again .

"He's trying to find the bike again, or at least the same as the Vespa motor that he had the time, but he did not find it yet," he concluded. (Uky)
>

Read More..

the master

The Master is a reality show TV Indonesia to equalize the ability of a magician with other magicians. Events are familiar with the tagline "Looking for Stars Without the incantation", was first aired in February 6th 2009 until May 8 2009 every Friday at 21:30 until 00:30 the next day. However, the time slot of The Master sometimes can shift to the day Saturday with the same hours as the slide show that seemed more a top priority for broadcast. Every season shows 5 candidates (6 candidates in Season 3) with the flow of magic is different and each episode will be sidelined 1 candidate to eventually live the remaining 1 person. Systems of this elimination using percentages acquisition SMS from the television audience. Each finished displaying its action, the candidates will be commented upon by a jury consisting of 4 men, 3 person jury still is Deddy Corbuzier , Romy Rafael , Melissa Karim , and 1 other person vary each episode of a popular artist. "The Master" is guided by Nico Siahaan . The Master is able to reach as many as 11.4 rating. In other countries there is a similar event that it Phenomenon (TV series) slot duration is shorter (only 60 minutes including the ads) is different from the show The Master of duration can be from 120 minutes up to more, depending on how the sets of shows.

Until the fourth season, impressions of The Masters was stopped for a while. Final Impressions inauguration of the season 3 winner of The Masters, Rizuki, and Koesnoe Efendi aka Cosmo from season 4 on Friday August 21 2009 to cover the Masters competition. This event is paused until discovered a new concept.

The Master who will re-form agenda drafted, corrected the deficiencies that exist, and then will return for the talents of magic in Indonesian society.
Pro and Con

This Tanyangan get controversial with the public reaction is not a magician. Namely, is still widespread view that The Master is heresy and the use of mystical and supernatural elements. Actually, this is only a television show with magic tricks entertainment only and not to use the element of magic. An entertainment is the same as if we watch action movies or soap operas and even movies kanuragan Sableng Wiro . However, it remains a debate for the laity because of their ignorance will be Magic. [1] This makes the Production Team have their homework to be completed. Reaction may occur due to protest the appearance of one of the participants, Master Limbad which often show the actions that seem to use witchcraft. Can ya but could not. Whatever it is, the production must be recycled with a new concept better.

Magic will always look amazing and admirable for its confidentiality is still well preserved. And every magician claimed to always uphold the code of ethics, namely: to practice and truly master the game perfectly before the show and must always maintain the confidentiality of games and tricks. And because the code of ethics that make a magic show magician, or even accused as an event that uses magic .
Because it's so satisfying to get the impression ratting The Master, RCTI also broadcast programs with the same event that is derivative of The Master Junior . This event is a magic competition for children aged between 6 to 12 years, aired every Saturday and Minggu.Program The Master reason, inspire so many magic shows that re-aired on TV after the master's slot

Read More..

link

A link is the "address" to a document (or a resource) on the web.

Hyperlinks, Anchors, and Links

In web terms, a hyperlink is a reference (an address) to a resource on the web. Hyperlinks can point to any resource on the web: an HTML page, an image, a sound file, a movie, etc. An anchor is a term used to define a hyperlink destination inside a document.
The HTML anchor element <a>, is used to define both hyperlinks and anchors.
We will use the term HTML link when the <a> element points to a resource, and the term HTML anchor when the <a> elements defines an address inside a document.


An HTML Link

Link syntax:
<a href="url">Link text</a> 
The start tag contains attributes about the link. The element content (Link text) defines the part to be displayed.
Note: The element content doesn't have to be text. You can link from an image or any other HTML element.


The href Attribute

The href attribute defines the link "address".
This example defines a link to http://mhabibie.blodspot.com:
<a href="http://mhabibie.blogspot.com/">Visit Habibie's blog!</a> The code above will display like this in a browser:
Visit Habibie's blog!


The target Attribute

The target attribute defines where the linked document will be opened. The code below will open the document in a new browser window:
 example:
<a href="http://mhabibie.blogspot.com/" target="_blank">Visit Habibie's blog!</a> 

The name Attribute

When the name attribute is used, the <a> element defines a named anchor inside a HTML document.
Named anchor are not displayed in any special way. They are invisible to the reader.
Named anchor syntax:
<a name="label">Any content</a> The link syntax to a named anchor:
<a href="#label">Any content</a> The # in the href attribute defines a link to a named anchor.


Basic Notes - Useful Tips

Always add a trailing slash to subfolder references. If you link like this: href="http://mhabibie.blogspot.com/html", you will generate two HTTP requests to the server, because the server will add a slash to the address and create a new request like this: href="http://mhabibie.blogspot.com/html/"
Named anchors are often used to create "table of contents" at the beginning of a large document. Each chapter within the document is given a named anchor, and links to each of these anchors are put at the top of the document.
If a browser cannot find a named anchor that  has been specified, it goes to the top of the document. No error occurs.

Read More..

HTML format and style

Big strong small del insert
These are part of formating tag that use in html.
You use <i> for italic. <b> for bold. <big> big. <small> for small. <sub> for subscript like H2O. <sup> for superscript like x2 + y2.

You can use <style> to modify you document. example
<p style="font-family:verdana;color:red">
This text is in Verdana and red</p>

This text is in Verdana and red

Read More..

html tutorial basic

What is HTML?

HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language. HTML is not a programming language, it is a markup language. A markup language is a set of markup tags. HTML uses markup tags to describe web pages.

HTML markup tags are usually called HTML tags

HTML tags are keywords surrounded by angle brackets like <html>
HTML tags normally come in pairs like <b> and </b>
The first tag in a pair is the start tag, the second tag is the end tag
Start and end tags are also called opening tags and closing tags.
example:


<html>

<head>
<title>Title of your document</title>
</head>

<body>

Your content is here

</body>
<html>

The text between <html> and </html> describes the web page.
The text between <head> and </head> is your web description head.
The text between and is the visible page content
<>

HTML uses tags like <b>, <u> and <i> for formatting output, like bold, italic text or underline text.
These HTML tags are called formatting tags.

For formatting your web, you should be better using CSS to format your web. we'll study about CSS in next time.

Read More..

free money cheat

Money cheat in pokemon FireRed & LeafGreen.
Money that you'll get is infinite. But, if you already log out, your cheat is blank, so you must enter the cheat again. anyway, in GBA, in order to activate this cheat code, you have to have action replay.
this below code, must be activated, because this is the master code.
72bc6dfb
e9ca5465
a47fb2dc
1af3ca86
8d671fd9
6f6beff2
78da95df
44018cb4
6b5aeec6
f80e49bc
1c7b3231
b494738c

Infinite Money
29c78059
96542194

Money cheat in pokemon emerald.
Activate this code first:
d8bae4d9
4864dce5
a86cdba5
19ba49b3
a57e2ede
a5aff3e4
1c7b3231
b494738c

below code is infinite money:
c051ccf6
975e8da1

This free below code is all pokeballs cheat:
085938bb
99ff313d
2dafd739
5d796510

Read More..

how to increase your visitor?

Nowadays, to get 1000 visitors in the period, was not a dream anymore, especially for the blogger who are focusing to increase web traffic (Web traffic). I'll share the tips that you will get visitor no matter how many visitor you would like to visit your site. So here's how:

1. Download the Alexa Toolbar Get Sparky

2. Open this link: http://doorwaypage.com/C527-139.php, Then input the address of your blog or website. In this script there are many proxy server list options (Unique Proxy Servers List), Well, use whichever you like.

3. Use this script for 1 - 2 hours a day and see the results in its first week.

4. It would be better if in your website or blog already installed with alexa widget.

Hopefully, this technique is useful to help colleagues. Good luck? ! !

Well this is it from me now, we'll continue another time. Hopefully this article can be useful and beneficial to you all, my friends. Do not forget to make a comment to this article, in order to get feedback from authors and readers.
Above are cheat way to increase your alexa rank. It's not give you a real visitor. But give you anonymous visitor, anonymous user that visit your blog. this anonymous user is coming from the proxy list that you choose.
Traffic blog can be increased thorough bellow link. It's free. and it's give you real visitor, human visitor.
Click here to get 1 Million Guaranteed Real Visitors, It's FREE!




Read More..
 

Mhabibie's web | Mhabibie's BLog