Sunday, March 6, 2011

Promo Forplus Hemat 27% Laba 65%

Bulan Maret 2011 merupakan bulan promo. Selain promo aktifasi dengan menggunakan gasa dan ladyfem masih ada promo lain yaitu berupa forplus. Sebenarnya Promo forplus ini berlaku sejak Januari 2011 dan akan berakhir pada akhir Maret 2011.

Beberapa keuntungan promo aktifasi dengan gasa atau ladyfem sudah saya sampaikan di artikel sebelumnya. Nah disini saya akan menyampaikan beberapa keuntungan atau kelebihan dari promo Forplus tersebut di atas.

Promo forplus adalah berupa pembelian foredi sebanyak 7 box dengan harga hanya Rp. 850.000,-. Kenapa saya bilang "hanya"? Karena memang secara default, seorang member ABE bisa mendapatkan 3 foredi dengan harga Rp. 500.000,- sehingga dengan total 7 box seharusnya dibeli dengan harga Rp. 1.167.000,-. Ini berarti sudah hemat sebesar 27%.

Dari ketujuh box foredi, apabila kita jual dengan harga perbox sebesar Rp. 200.000,- maka total penjualan menjadi RP. 1.400.000,- sehingga total laba atau keuntungan bersih sebesar Rp. 550.00,- atau 65% dari harga pembelian. Harga yang sangat lumayan bukan?

Silahkan manfaatkan kesempatan yang berharga ini. Bagaimana dengan yang belum bergabung menjadi member ABE? Silahkan gabung dulu dengan menggunakan promo aktifasi Gasa atau Ladyfem yang kelebihannya bisa anda baca disini.

Silahkan hubungi saya untuk informasi lebih lanjut di 081519005341 atau YM : luragungb

Sukses selalu buat Anda semua.

Monday, April 26, 2010

HTML : Form And Text Input

As we know, HTML is easy program for website. If we want input some information, usually we use Form and text input.



orms are used in HTML to pass data. On the web, data is typically passed as a key-value pair. For example, the following URL:
http://www.xyz.com/example?c=1&d=title
has two separate key-value pairs, separated by '&'. The key for the first key-value pair is 'c', and the value is '1'. The key for the second key-value pair is 'd', and its value is 'title'.
How are key-value pair specified? They are specified by the <form> tag. The general format is as follows:


<form action=xxx>
  ...
  [section specifying the value for each key]
  ...
  <input type=submit value=Go>
</form>


The text after action= specifies the script to be executed after the user submits the information. <input type=submit> gives a button that the user clicks when she is ready to submit the information. The value=Go piece specifies the text appearing on the button, in this case 'Go'. This is shown below:



Friday, March 5, 2010

HTML : Images, Frame And Special Characters

We have learn more about HTML. We know that HTML is (H)yper(T)ext (M)arkup (L)anguage. HTML tags are elements of the HTML document used to specify how the document should be displayed by the browser. Attributes are associated with each tag to further define the tags. In HTML Format, we learned format font and format header. In HTML Table, we have know format TR and TD. And we have know about HTML list hand hyperlink.

In this section, we will know about HTML images, HTML frame and special characters. HTML Image write with <img>. The <img> tag is used to embed an image on the HTML document. The attributes are as follows:
src: The file path to the image file.
width: The width of the image, in pixels.
height: The height of the image, in pixels.
alt: The text the browser will display when visitors mouse over the image. Search engines often places more weight on the text in the alt attribute.

Thursday, February 18, 2010

HTML Tutorial : List and Hyperlink

Let's go learn again. Yesterday we have learn about html tags, html format and html table. This section we will know about html list and html hyperlink. What is the list and what is the hyperlink?


Lists the tags often used with HTML lists: <ol>, <ul>, and <li>.

<ol>
The <ol> tag specifies that the following list is ordered.
<ul>
The <ul> tag specifies that the following list is unordered.
<li>
The <li> tag lists each item, whether ordered or numbered. Note that each item is indented.
Example 1: ordered list.

HTML:
<ol>
<li>Unordered list 1.</li>
<li>Unordered list 2.</li>
</ol>

Display:

  1. Unordered list 1.
  2. Unordered list 2.

Thursday, February 4, 2010

HTML Tutorial : Table

Now, we will learn about table in html. Yesterdey, we have learn about tags html and format html, do you still remember?

This section lists the tags often used with HTML tables: <table>, <tr>, and <td>.

<table>
The <table> tag specifies the presence of a table. This is very often used in conjunction with the <tr> and the <td> tags. The following attributes are commonly used to define the properties of this table:
width: This specifies the width of the table. Can be specified in pixels or in relative terms (for example, 100%).
border: This specifies whether the table will have a border. The number indicates the thickness of the border.
cellspacing: The amount spacing between the cell wall and the cell border. The area enclosed by the cell walls are the maximum amount of area that text can be displayed in a cell.
cellpadding: The amount padding between cells and the each cell wall in a table.
bgcolor: This specifies the background color for this table. The color value may be specified as the color name or the six-character color code.

Tuesday, February 2, 2010

HTML Tutorial : Format

We have leard about html tags and we known about general format of html.
This section includes the tags often used for formatting the HTML text.

<font>
The <font> tag is used to change the format of the text on the web page. The most important attributes are as follows: javascript:void(0)

  • face: The type of font. Common ones include "Time New Roman", "Verdana", and "Helvetica."
  • size: This indicates the size of the text. This can be absolute (0 .. 6), or relative ("+1", "+2", ... or "-1", "-2" ...) 
  • color: This indicates the color of the text. Either the color name or the six-character color code may be used to specify color.

HTML Tutorial : Tags


In This tutorial, we will learn about HTM Tags. As we known, HTML is containt about Tags, Format, Table, List, Hyperlink, Image, Frame, etc. We have learn how to write html tags, so we can write article easily.



HTML stands for (H)yper(T)ext (M)arkup (L)anguage. It has certain tags and attributes defined, and is geared towards document display over the World Wide Web. HTML documents can be viewed in browsers such as Internet Explorer, Mozilla, Opera, and Safari. On this page, we will introduce the notion of tags and attributes. 

Tags
Tags are elements of the HTML document used to specify how the document should be displayed by the browser. In HTML, each tag has its own specific meaning, which is (in general) common across all different browsers. In fact, you may think of this tutorial as an introduction to the tags that are commonly used in writing HTML