<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dijexi.com &#187; web development</title>
	<atom:link href="http://www.dijexi.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dijexi.com</link>
	<description>free programming tutorial, tips and tricks on php, codeigniter, delphi, dotnet, ajax and more..</description>
	<lastBuildDate>Fri, 13 Jan 2012 23:21:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Developing Web Based POS Application Using Ruby on Rails on Debian 5</title>
		<link>http://www.dijexi.com/2010/09/developing-web-based-pos-application-using-ruby-on-rails-on-debian-5/</link>
		<comments>http://www.dijexi.com/2010/09/developing-web-based-pos-application-using-ruby-on-rails-on-debian-5/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 03:01:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Debian 5]]></category>
		<category><![CDATA[Developing]]></category>
		<category><![CDATA[point of sales]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/09/developing-web-based-pos-application-using-ruby-on-rails-on-debian-5/</guid>
		<description><![CDATA[In this article we will learn how to begin developing web applications using Ruby on Rails. First we setup the development environment, then develop a simple CRUD (create, read, update, delete) application using MySQL database, and deploy the application to Apache web server. An an example, we will develop a very simple point of sales [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--></p>
<p>In this article we will learn how to begin developing web applications using Ruby on Rails. First we setup the development environment, then develop a simple CRUD (create, read, update, delete) application using MySQL database, and deploy the application to Apache web server. An an example, we will develop a very simple point of sales (POS) application that consists only 3 tables: orders, order_details, and items.</p>
<p>&#160;</p>
<h2>Ruby on Rails Installation</h2>
<p>Install Ruby if it’s not installed yet on your system:</p>
<blockquote><p><font face="Courier"># apt-get install&#160; ruby1.8 ruby1.8-dev</font></p>
<p>&#160;</p>
</blockquote>
<p>Install Ruby Gem package management directly from Rubyforge since we need the newer version than version 1.3.1 that is shipped with Debian 5:</p>
<p> <span id="more-1366"></span><br />
<blockquote>
<p><font face="Courier"># wget </font><a title="http://rubyforge.org/frs/download.php/70696/rubygems-1.3.7.tgz" href="http://rubyforge.org/frs/download.php/70696/rubygems-1.3.7.tgz"><font face="Courier">http://rubyforge.org/frs/download.php/70696/rubygems-1.3.7.tgz</font></a></p>
<p><font face="Courier"># tar xfz rubygems-1.3.7.tgz</font></p>
<p><font face="Courier"># cd rubygems-1.3.7.tgz</font></p>
<p><font face="Courier"># ruby setup.rb</font></p>
<p><font face="Courier"># ln -s /usr/bin/gem1.8 /usr/bin/gem</font> </p>
<p>&#160;</p>
</blockquote>
<p>Install Ruby on rails version 2.3.8 using gem command:</p>
<blockquote><p><font face="Courier"># gem install -v=2.3.8 rails</font></p>
<p>&#160;</p>
</blockquote>
<p>&#160;</p>
<h2>Start Developing the Application</h2>
<p>We are going to put our application on /opt/rubyapp or whatever directory you like. </p>
<blockquote><p><font face="Courier"># cd /opt</font></p>
<p><font face="Courier"># mkdir rubyapp</font></p>
<p>&#160;</p>
</blockquote>
<p>On that directory, run rails command to create a new application skeleton. We are going to create a simple POS application and we call it simplepos.</p>
<blockquote><p><font face="Courier"># rails simplepos</font></p>
<p>&#160;</p>
</blockquote>
<p>Rails will create the application skeleton on the directory name we specified. Go to that directory and run the server.</p>
<blockquote><p><font face="Courier"># cd simplepos</font></p>
<p><font face="Courier"># ruby script/server</font></p>
<p>&#160;</p>
</blockquote>
<p>Ruby on Rails server will start and we can access it from <a href="http://yourserver-ip:3000">http://yourserver-ip:3000</a>, like the following:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb.png" width="504" height="337" /></a> </p>
<p>&#160;</p>
<p><em>Note: I once found a conflicting port 3000 on Debian 5, which was used by Dr WEB application. Simply stop that service or change the port in order that Rails application to start correctly.</em></p>
<p>You can see that the default database driver is SQL lite. We need to change this to MySQL. Edit the config/database.yml:</p>
<blockquote><p><font face="Courier New">development:        <br />&#160; adapter: mysql         <br />&#160; database: simplepos_development         <br />&#160; user: root         <br />&#160; password: 1234         <br />&#160; pool: 5         <br />&#160; timeout: 5000 </font></p>
<p><font face="Courier New"># Warning: The database defined as &quot;test&quot; will be erased and        <br /># re-generated from your development database when you run &quot;rake&quot;.         <br /># Do not set this db to the same as development or production.         <br />test:         <br />&#160; adapter: mysql         <br />&#160; database: simplepos_test         <br />&#160; user: root         <br />&#160; password: 1234         <br />&#160; pool: 5         <br />&#160; timeout: 5000 </font></p>
<p><font face="Courier New">production:        <br />&#160; adapter: mysql         <br />&#160; database: simplepos_production         <br />&#160; user: root         <br />&#160; password: 1234         <br />&#160; pool: 5         <br />&#160; timeout: 5000</font></p>
<p><font face="Courier New"></font></p>
</blockquote>
<p>Adjust the user name and password according to your system. Then run this command to create all the databases defined on the config file:</p>
<blockquote><p><font size="2" face="Courier New"># rake db:create:all</font></p>
<p>&#160;</p>
</blockquote>
<p>&#160;</p>
<p>Run the server again (ruby script/server) and make sure that our database is now MySQL:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb1.png" width="504" height="333" /></a> </p>
<p>&#160;</p>
<h2>The Application Design</h2>
<p>Our application is quite simple. It contains only 3 tables</p>
<ul>
<li><strong>orders</strong> for storing sales transactions with the following fields:</li>
<ul>
<li>number</li>
<li>order_date</li>
</ul>
<li><strong>items</strong> for storing items to be sold the following fields:</li>
<ul>
<li>number</li>
<li>name</li>
<li>description</li>
<li>unit_price</li>
</ul>
<li><strong>order_details</strong> for storing order details with the following fields:</li>
<ul>
<li>order_id</li>
<li>item_id</li>
<li>qty</li>
<li>unit_price</li>
<li>amount</li>
</ul>
</ul>
<p>Here is the relation of the 3 tables:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb2.png" width="520" height="222" /></a> </p>
<p>&#160;</p>
<h2>Creating Model , Controller, and View using Scaffold for Orders Data</h2>
<p>Let’s move on to coding. Rails provides us a very powerful scaffolding script that allows us to easily create the model, view, and controller, and even the tables related to the model.</p>
<p>First, create the Order model. Here we follow the Rails convention: model use singular word.</p>
<blockquote><p><font face="Courier New"># ruby script/generate scaffold Order number:integer order_date:date</font></p>
<p><font face="Courier New"></font></p>
</blockquote>
<p>Rails will create our Order model, view, and controller. Take a look on simplepos/app folder. Next create the database table according to the fields that we sepcified on the scaffold above:</p>
<blockquote><p><font face="Courier New"># rake db:migrate</font></p>
<p><font face="Courier New"></font></p>
</blockquote>
<p>Now, run the server again (ruby script/server) and test the CRUD functionality for the Order data by entering the URL address: <a href="http://yourserver-ip:3000/orders">http://yourserver-ip:3000/orders</a>. We can see the list orf orders on the index page, a new order creation link, along with edit, update, and delete link if there’s an order already.</p>
<p>Listing orders:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb3.png" width="450" height="417" /></a> </p>
<p>Adding new order:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb4.png" width="450" height="417" /></a> </p>
<p>Order created:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image5.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb5.png" width="450" height="417" /></a> </p>
<p>List the orders on the order list:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image6.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb6.png" width="450" height="417" /></a> </p>
<p>Editing the order:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image7.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb7.png" width="450" height="417" /></a> </p>
<p>Deleting the order:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image8.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb8.png" width="469" height="294" /></a> </p>
<p>What have we have is a complete CRUD application for Orders table created automatically by Rails scaffolding.</p>
<p>&#160;</p>
<h2>Creating Model , Controller, and View using Scaffold for Items Data</h2>
<p>Now create the model, controller, view, and table for items data, using the same steps as above.</p>
<blockquote><p><font face="Courier New"># ruby script/generate scaffold Item number:integer name:string description:text unit_price:decimal</font></p>
</blockquote>
<p>Then create the database table according to the fields that we specified on the scaffold above:</p>
<blockquote><p><font face="Courier New"># rake db:migrate</font></p>
<p><font face="Courier New"></font></p>
</blockquote>
<p>And try to run the items CRUD by pointing to URL <a href="http://yourserver-ip:3000/items">http://yourserver-ip:3000/items</a> . You should be able to list, create, edit, and delete the items data now. This is the example of creating new item form.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image9.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb9.png" width="446" height="670" /></a> </p>
<p>&#160;</p>
<h2>Validating Data</h2>
<p>If we need to validate data entered by the user, then we can easily edit the model and add validations to the fields. For example, we need to validate the existence of number and&#160; order_date fields on orders table. Also we need to validate whether total_amount field is a number or not. Edit the app/model/order.rb file and add the following bold lines:</p>
<blockquote><p><font face="Courier New">class Order &lt; ActiveRecord::Base       <br /></font><font face="Courier New"><strong>&#160;&#160; validates_presence_of :number, :order_date&#160; </strong>        <br />end</font></p>
</blockquote>
<p>Stop and start the server again, and let’s enter the wrong data according to the validation rule.</p>
<p>Entering a blank number, order_date.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image10.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb10.png" width="450" height="417" /></a> </p>
<p>Of course, we could also add the validation to Items data by editing the app/model/item.rb file, by adding the following bold lines:</p>
<blockquote><p><font face="Courier">class Item &lt; ActiveRecord::Base       <br />&#160;&#160; </font><font face="Courier"><strong>validates_presence_of :number, :name, :unit_price         <br />&#160;&#160; validates_numericality_of :unit_price</strong>        <br />end</font></p>
</blockquote>
<p>Try to create a blank number, name, unit_price on item data:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image11.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb11.png" width="466" height="440" /></a> </p>
<p>&#160;</p>
<h2>Creating Order Details MVC and Set the Relation</h2>
<p>Order details is the place where we stored the actual sales transaction. It will record the items purchased on a particular order number. So it has a relation to items table and orders table as well, both for a “belongs to” relationship. So the relations will be:</p>
<ul>
<li>orders has many order_details</li>
<li>items has many order_details</li>
<li>order_details belongs to orders and items</li>
</ul>
<ul>Let’s create the MVC for this order details using the same steps as before:</ul>
<ul>
<blockquote>
<p><font face="Courier New"># ruby script/generate scaffold OrderDetail order:references item:references qty:integer unit_price:decimal amount:decimal</font></p>
</blockquote>
<p>Note that we used references data type for order and item on OrderDetail model. This will make Rails to create a relationship between OrderDetail and Order and Item model (ie OrderDetails belongs to Order and Item). It will also create a reference column on the order_details table, which is order_id and items_id. </p>
<p>Then create the database table according to the fields that we specified on the scaffold above:</p>
<blockquote><p><font face="Courier New"># rake db:migrate</font></p>
<p><font face="Courier New"></font>&#160;</p>
</blockquote>
<p> And take a look at the generated order_details table:</ul>
<blockquote><p><font face="Courier New">mysql&gt; explain order_details;       <br />+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+        <br />| Field&#160;&#160;&#160;&#160;&#160; | Type&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; | Null | Key | Default | Extra&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+        <br />| id&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; | int(11)&#160;&#160;&#160;&#160;&#160;&#160; | NO&#160;&#160; | PRI | NULL&#160;&#160;&#160; | auto_increment |        <br /><strong>| order_id&#160;&#160; | int(11)&#160;&#160;&#160;&#160;&#160;&#160; | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |         <br />| item_id&#160;&#160;&#160; | int(11)&#160;&#160;&#160;&#160;&#160;&#160; | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |</strong>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />| qty&#160;&#160;&#160;&#160;&#160;&#160;&#160; | int(11)&#160;&#160;&#160;&#160;&#160;&#160; | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />| unit_price | decimal(10,0) | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />| amount&#160;&#160;&#160;&#160; | decimal(10,0) | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />| created_at | datetime&#160;&#160;&#160;&#160;&#160; | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />| updated_at | datetime&#160;&#160;&#160;&#160;&#160; | YES&#160; |&#160;&#160;&#160;&#160; | NULL&#160;&#160;&#160; |&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; |        <br />+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8211;+&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;&#8212;&#8212;-+        <br />8 rows in set (0.00 sec)</font></p>
</blockquote>
<p>&#160;</p>
<p><em>Note: created_at and updated_at are auto generated columns when we create the scaffolding.</em></p>
<p>Let’s define this relations to the models. First edit the order model (app/model/order.rb) and add the following bold lines:</p>
<blockquote><p><font face="Courier">class Order &lt; ActiveRecord::Base       <br />&#160;&#160; validates_presence_of :number, :order_date        <br />&#160;&#160; </font><font face="Courier"><strong>has_many :order_details         <br /></strong>end</font></p>
</blockquote>
<p> And to the item model (app/model/item.rb)</p>
<blockquote><p><font face="Courier">class Item &lt; ActiveRecord::Base       <br />&#160;&#160; validates_presence_of :number, :name, :unit_price        <br />&#160;&#160; validates_numericality_of :unit_price        <br /></font><font face="Courier"><strong>&#160;&#160; has_many :order_details         <br /></strong>end</font></p>
</blockquote>
<p>Also check the order detail model (app/model/order_detail.rb) has the relationship already because we specify that order and items are references when do the scaffolding.</p>
<blockquote><p><font face="Courier">class OrderDetail &lt; ActiveRecord::Base       <br />&#160; belongs_to :order        <br />&#160; belongs_to :item        <br />end</font></p>
</blockquote>
<p>&#160;</p>
<h2>Edit routes.rb</h2>
<p>We also need to edit the config/routes.rb so that the URL for order and order details also have a relationship information that order has many order_details. Modify the file so it looks like the following:</p>
<blockquote><p><font face="Courier">ActionController::Routing::Routes.draw do |map|       <br />&#160; map.resources :items </font></p>
<p><strong><font face="Courier">&#160; map.resources :orders, :has_many =&gt; :order_details</font></strong></p>
<p><font face="Courier">&#8230;.</font></p>
</blockquote>
<p>It will enable us to access the order details data below the order URL like this: <a href="http://yourserver:3000/orders/1/order_detail">http://yourserver:3000/orders/1/order_detail</a></p>
<p>&#160;</p>
<h2>Adding Order Detail Form </h2>
<p>We need to add the detail form below the Order show page so that we can add item details for a particular Order.</p>
<p>Add these bold lines just below the Date field of the Order:</p>
<blockquote><p><font face="Courier">&#8230;</font></p>
<p><font size="1" face="Courier">&lt;p&gt;       <br />&#160; &lt;b&gt;Order date:&lt;/b&gt;        <br />&#160; &lt;%=h @order.order_date %&gt;        <br />&lt;/p&gt;</font></p>
<p><font face="Courier"><strong>&lt;h1&gt;Order details&lt;/h1&gt;         <br />&lt;table&gt;          <br />&lt;tr&gt;          <br />&#160;&#160; &lt;th&gt;Item&lt;/th&gt;          <br />&#160;&#160; &lt;th&gt;Qty&lt;/th&gt;          <br />&#160;&#160; &lt;th&gt;Unit Price&lt;/th&gt;          <br />&#160;&#160; &lt;th&gt;Amount&lt;/th&gt;          <br />&lt;/tr&gt;          <br /></strong></font></p>
<p><font face="Courier"><strong>&lt;%= render :partial =&gt; @order.order_details %&gt;</strong></font></p>
<p><font face="Courier"><strong>&lt;% form_for [@order, OrderDetail.new] do |f| %&gt;         <br />&lt;tr&gt;          <br />&#160;&#160; &lt;td&gt;&lt;%= f.label :item_id, &quot;item&quot; %&gt;&lt;/td&gt;          <br />&#160;&#160; &lt;td&gt;&lt;%= f.label :qty, &quot;Qty&quot; %&gt;&lt;/td&gt;          <br />&lt;/tr&gt;          <br />&lt;tr&gt;          <br />&#160;&#160; &lt;td&gt;&lt;%= f.select :item_id, @items.map {|u| [u.name,u.id %&gt;&lt;/td&gt;          <br />&#160;&#160; &lt;td&gt;&lt;%= f.text_field :qty %&gt;&lt;/td&gt;          <br />&lt;/tr&gt;          <br />&lt;tr&gt;          <br />&#160;&#160; &lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;%= f.submit &quot;add detail&quot; %&gt;&lt;/td&gt;          <br />&lt;/tr&gt;          <br />&lt;% end %&gt;          <br />&lt;/table&gt;</strong></font></p>
<p><font face="Courier">...</font></p>
</blockquote>
<p>&#160;</p>
<p>We need to create a new file under app/views/order_details, called app/views/order_details/_order_detail.html.erb. This file is required by the <em>:render=&gt;partial </em>line above and is a partial template file used to render each order detail lines for an Order.</p>
<p>&#160;</p>
<blockquote><p><font face="Courier">&lt;% div_for order_detail do %&gt;       <br />&lt;tr&gt;        <br />&#160;&#160; &lt;td&gt;&lt;%=h order_detail.item.name %&gt;&lt;/td&gt;        <br />&#160;&#160; &lt;td&gt;&lt;%=h order_detail.qty %&gt;&lt;/td&gt;        <br />&#160;&#160; &lt;td&gt;&lt;%=h order_detail.unit_price %&gt;&lt;/td&gt;        <br />&#160;&#160; &lt;td&gt;&lt;%=h order_detail.amount %&gt;&lt;/td&gt;        <br />&lt;/tr&gt;        <br />&lt;% end %&gt;</font></p>
</blockquote>
<p>&#160;</p>
<p>Then, we create a form for order details of an order ( form_for [@order, OrderDetail.new] do |f| ). After this, f variable will be related to order_details, but when submitted it will go to&#160; /orders/&lt;id&gt;/order_details.</p>
<p>On that form, we use select() helper function to render a selection box that is populated with all items data that we have where users can pick an item from. Using @items.map we create an array that is required by the select() as its option values.</p>
<p>Next, edit app/controller/orders_controller.rb file so that it provides us with @items object that we used on the select() above.</p>
<blockquote><p><font face="Courier">def show       <br />&#160; @order = Order.find(params[:id])        <br />&#160; <strong>@items = Item.find(:all) </strong></font></p>
<p><font face="Courier">&#160; respond_to do |format|       <br />&#160;&#160;&#160; format.html # show.html.erb        <br />&#160;&#160;&#160; format.xml&#160; { render :xml =&gt; @order }        <br />&#160; end        <br />end</font> </p>
</blockquote>
<p>&#160;</p>
<p>Modify app/controller/order_details_controller.rb so that it contains only one create method (delete all other methods generated by the scaffolding process). This is invoked when we create a new order_detail record.</p>
<p>&#160;</p>
<blockquote><p><font size="2" face="Courier">class OrderDetailsController &lt; ApplicationController       <br />&#160;&#160; def create        <br />&#160;&#160;&#160;&#160;&#160; @order = Order.find(params[:order_id])        <br />&#160;&#160;&#160;&#160;&#160; @order_detail = @order.order_details.create!(params[:order_detail])        <br />&#160;&#160;&#160;&#160;&#160; item = Item.find(params[:order_detail][:item_id])        <br />&#160;&#160;&#160;&#160;&#160; qty = params[:order_detail][:qty]        <br />&#160;&#160;&#160;&#160;&#160; @order_detail.update_attributes(:amount=&gt;item.unit_price.to_i * qty.to_i , :unit_price=&gt;item.unit_price)        <br />&#160;&#160;&#160;&#160;&#160; redirect_to @order        <br />&#160;&#160; end        <br />end</font></p>
</blockquote>
<p>&#160;</p>
<p>On this method, first we find the order identified by an ID (params[:order_id]) which is a parameter posted by the order detail form.</p>
<p>Found the Order, we create an OrderDetail record by calling @order.order_details.create!() method. This is possible because we have declared that an order can have many order_details.</p>
<p>Next we find the item that is being selected by the user, to find out its unit_price and calculate the order detail amount. Then we update the attributes of order_details using these values.</p>
<p>After all processes are done, we redirect back to the order URL (redirect_to @order).</p>
<p>&#160;</p>
<p>It’s time now to try our modified application, go to Order URL and click Show link. We will have a new look of the form:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image12.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb12.png" width="450" height="417" /></a> </p>
<p>Try to add items on the order and check the unit price and amount. </p>
<p>&#160;</p>
<h2>Calculating Order’s Total Amount </h2>
<p>It’s time to calculate the total amount of an order which is the sum of amounts of all order_details that it has.</p>
<p>This is easily calculated using the relation that we have set before (order has many order_details). After defining that relation, we will be able to call order.order_details.sum(colname) and get the total value of colname on the order_details table where order_id is the order that we are looking at.</p>
<p>So, we can edit add/model/order.rb to add a new method total_amount that will return the sum of column amount on the table that it has many (order_details):</p>
<blockquote><p><font face="Courier">class Order &lt; ActiveRecord::Base       <br />&#160;&#160; validates_presence_of :number, :order_date, :total_amount        <br />&#160;&#160; validates_numericality_of :total_amount        <br />&#160;&#160; has_many :order_details </font></p>
<p><font face="Courier"><strong>&#160;&#160; def total_amount         <br />&#160;&#160;&#160;&#160;&#160; self.order_details.sum(:amount)          <br />&#160;&#160; end          <br /></strong>end</font></p>
</blockquote>
<p>Now we can use that method from our views. Edit the app/views/orders/index.html.erb:</p>
<blockquote><p><font size="1" face="Courier">&lt;h1&gt;Listing orders&lt;/h1&gt; </font></p>
<p><font size="1" face="Courier">&lt;table&gt;       <br />&#160; &lt;tr&gt;        <br />&#160;&#160;&#160; &lt;th&gt;Number&lt;/th&gt;        <br />&#160;&#160;&#160; &lt;th&gt;Order date&lt;/th&gt;        <br /></font><font size="1"><font face="Courier"><strong>&#160;&#160;&#160; &lt;th&gt;Total amount&lt;/th&gt;           <br /></strong>&#160; &lt;/tr&gt; </font></font></p>
<p><font size="1" face="Courier">&lt;% @orders.each do |order| %&gt;       <br />&#160; &lt;tr&gt;        <br />&#160;&#160;&#160; &lt;td&gt;&lt;%=h order.number %&gt;&lt;/td&gt;        <br />&#160;&#160;&#160; &lt;td&gt;&lt;%=h order.order_date %&gt;&lt;/td&gt;        <br /></font><font size="1"><font face="Courier"><strong>&#160;&#160;&#160; &lt;td&gt;&lt;%=h order.total_amount %&gt;&lt;/td&gt;           <br /></strong>&#160;&#160;&#160; &lt;td&gt;&lt;%= link_to &#8216;Show&#8217;, order %&gt;&lt;/td&gt;          <br />&#160;&#160;&#160; &lt;td&gt;&lt;%= link_to &#8216;Edit&#8217;, edit_order_path(order) %&gt;&lt;/td&gt;          <br />&#160;&#160;&#160; &lt;td&gt;&lt;%= link_to &#8216;Destroy&#8217;, order, :confirm =&gt; &#8216;Are you sure?&#8217;, :method =&gt; :delete %&gt;&lt;/td&gt;          <br />&#160; &lt;/tr&gt;          <br />&lt;% end %&gt;          <br />&lt;/table&gt;</font></font></p>
</blockquote>
<p>Here is the look of the modified index pages:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image13.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb13.png" width="416" height="374" /></a> </p>
<p>And also the app/views/orders/show.html.erb:</p>
<blockquote><p><font size="1" face="Courier">&lt;p&gt;       <br />&#160; &lt;b&gt;Number:&lt;/b&gt;        <br />&#160; &lt;%=h @order.number %&gt;        <br />&lt;/p&gt; </font></p>
<p><font size="1" face="Courier">&lt;p&gt;       <br />&#160; &lt;b&gt;Order date:&lt;/b&gt;        <br />&#160; &lt;%=h @order.order_date %&gt;        <br />&lt;/p&gt; </font></p>
<p><font size="1" face="Courier"><strong>&lt;p&gt;         <br />&#160; &lt;b&gt;Total amount:&lt;/b&gt;          <br />&#160; &lt;%=h @order.total_amount %&gt;          <br />&lt;/p&gt;</strong></font></p>
<p><font size="1" face="Courier">. . . </font></p>
</blockquote>
<p>Here is the look of the modified show page:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image14.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb14.png" width="433" height="417" /></a> </p>
<p>&#160;</p>
<p>&#160;</p>
<h2>Decorating and Layout</h2>
<p>&#160;</p>
<h4>Per model layout</h4>
<p>As part of the scaffolding process, Rails generates a layout template for each model that we created. It is located on app/views/layouts directory. For example, we change the layout of the Items data, which is the app/views/layouts/items.html.erb.</p>
<blockquote><p><font face="Courier">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;       <br />&#160;&#160;&#160;&#160;&#160;&#160; &quot;</font><a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;"><font face="Courier">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;</font></a><font face="Courier">&gt; </font></p>
<p><font face="Courier">&lt;html xmlns=&quot;</font><a href="http://www.w3.org/1999/xhtml&quot;"><font face="Courier">http://www.w3.org/1999/xhtml&quot;</font></a><font face="Courier"> xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;       <br />&lt;head&gt;        <br />&#160; &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt;        <br />&#160; &lt;title&gt;Items: &lt;%= controller.action_name %&gt;&lt;/title&gt;        <br />&#160; &lt;%= stylesheet_link_tag &#8216;scaffold&#8217; %&gt;        <br />&lt;/head&gt;        <br />&lt;body&gt; </font></p>
<p><font face="Courier">&lt;p style=&quot;color: green&quot;&gt;&lt;%= notice %&gt;&lt;/p&gt; </font></p>
<p><font face="Courier">&lt;%= yield %&gt; </font></p>
<p><font face="Courier">&lt;/body&gt;       <br />&lt;/html&gt;</font></p>
</blockquote>
<p>As you can see, it’s a regular HTML file with a special tag that comes from Rails, which are&#160;&#160;&#160; &lt;%= stylesheet_link_tag &#8216;scaffold&#8217; %&gt;&#160; and <font face="Courier">&lt;%= yield %&gt;. </font>The first tag is how Rails application link a CSS file, in this case scaffold.css. Rails automatically search this file on public/stylesheets directory on our application folder. </p>
<p>The next tag is &lt;%= yield %&gt;. This is a Rails variable that contains the data generated by the view. So everything that we write on the view files will be contained in this variable and rendered on this layout file.</p>
<p>Let’s modify the body background color for Items data only, so change the body tag to &lt;body style=&quot;background-color:#aaa&quot;&gt;. We should see the background color for Items listing, edit, create, and update page will be changed.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2010/09/image15.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.dijexi.com/wp-content/uploads/2010/09/image_thumb15.png" width="434" height="401" /></a> </p>
<h4>Global application layout</h4>
<p>If you’d like to change the layout globally for each model pages, then you will need to create a new file called app/views/layouts/application.html.erb, and delete&#160; all other layout files generated by the scaffold. You can copy from another layout file exists as a template, then do the layout adjustments on that file and rename it to application.html.erb.</p>
<p>Having only application.html.erb will make Rails to use that file as the layout for the application. So you have to delete all other layout files, otherwise Rails will use that file instead.</p>
<h4>The CSS, image, and Javascript files location</h4>
<p>On your application directory, there’s a directory named public. This is where we store all public resources, like CSS, images, and Javascript files.</p>
<p>Rails provides us with some helper functions to generate the proper path for accessing these things, for example image_tag() to access images on public/images, stylesheet_link_tag() to access CSS files, and javascript_include_tag() to access Javascript files.</p>
<p>&#160;</p>
<h2>The Default Welcome Page</h2>
<p>When pointing our browser to <a href="http://yourserver-ip:3000/">http://yourserver-ip:3000/</a> we will get the Ruby on Rails welcome page by default. We can change this default behaviour by editing the config/routes.rb file. Look at the map.root :controller =&gt; &quot;welcome&quot; line, and uncomment that line.</p>
<blockquote><p><font face="Courier"></font></p>
<p><font face="Courier">&#8230;</font></p>
<p><font face="Courier">map.root :controller =&gt; &quot;welcome&quot;</font> </p>
<p>&#8230;</p>
<p>&#160;</p>
</blockquote>
<p>It means that our application’s default controller is called welcome, which is not exist right now.</p>
<p>Next step, we need to delete public/index.html file.</p>
<blockquote><p><font face="Courier"># rm public/index.html</font></p>
<p><font face="Courier"></font></p>
</blockquote>
<p>&#160;</p>
<p>Then, we need to create that controller, simply by&#160; running script/generate again but this time with controller parameter and not scaffold as we have used before.</p>
<blockquote><p><font face="Courier"># ruby script/generate controller welcome index</font></p>
<p><font face="Courier"></font></p>
</blockquote>
<p>The command tells Rails to create for us a controller named welcome with a method index. Beside that Rails will also create a view file on app/views/welcome/index.html.erb that we can customize right away.</p>
<p>Let’s modify app/views/welcome/index.html.erb&#160; so that it will show us a main menu for our application :</p>
<blockquote><p><font face="Courier">&lt;h1&gt;Welcome to Simple POS&lt;/h1&gt; </font></p>
<p><font face="Courier">&lt;ul&gt;       <br />&#160;&#160; &lt;li&gt;&lt;%= link_to &quot;Orders&quot; , orders_path %&gt;&lt;/li&gt;        <br />&#160;&#160; &lt;li&gt;&lt;%= link_to &quot;Manage Items&quot; , items_path %&gt;&lt;/li&gt;        <br />&lt;/ul&gt;</font></p>
</blockquote>
<p>Here we use another Rails helper function link_to() which will create a HTML &lt;a href&gt; tag, which will display a link text as specified by the first parameter, and will jump to the URL that we specified in it’s second parameter.</p>
<p>We also use orders_path and items_path, which are the helper functions that is automatically generated by the scaffolding process to go to the index page (listing) of the order and item data.</p>
<p>The link can also be referred as these:</p>
<blockquote><p><font face="Courier">&#160;&#160; &lt;%= link_to &quot;Orders&quot; , :controller=&gt;&quot;orders&quot;, :action=&gt;&quot;index&quot; %&gt;</font></p>
<p><font face="Courier">       <br /></font></p>
</blockquote>
<p>&#160;</p>
<p>&#160;</p>
<h2>Testing the Application</h2>
<p>Rails provides us a test suite for testing out our application programmatically. This will make us easier to test all functionality of our application without testing it manually by entering data on the user interface pages.</p>
<p>For example, it we need to test the application functionalities, run this comman:</p>
<blockquote><p><font face="Courier New"># rake test:functionals</font></p>
<p><font face="Courier New"></font></p>
</blockquote>
<p>We can see the test results and&#160; will be notified if something not expected exists.</p>
<p>&#160;</p>
<h2>Deploying Into Apache Web Server</h2>
<p>Install modrails aka Passenger to be used by Apache web server:</p>
<pre>gem install passenger</pre>
<p>Then type:</p>
<pre><kbd>passenger-install-apache2-module</kbd></pre>
<p>Then follow the instructions on that script.</p>
<ul><kbd><font face="Verdana"></font></kbd></ul>
<p><kbd></kbd></p>
</p>
<h4>Deploying on name based virtual host:</h4>
<p>Add a virtual host entry to your Apache configuration file. Make sure that the following conditions are met:</p>
<ul>
<li>The virtual host’s document root must point to your Ruby on Rails application’s <em>public </em>folder. </li>
<li>The Apache per-directory permissions must allow access to this folder. </li>
<li>MultiViews must be disabled for this folder. </li>
</ul>
<p>For example:</p>
<pre><tt>&lt;VirtualHost *:80&gt;
    ServerName <a href="http://www.simpleblog.com">www.simpleblog.com
</a>    DocumentRoot /opt/rubyapp/simpleblog/public
    &lt;Directory /opt/rubyapp/simpleblog/public&gt;
        Allow from all
        Options -MultiViews
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</tt></pre>
<p>You may also need to tweak your file/folder permissions. Make sure that the following folders are readable and executable by Apache:</p>
<ul>
<li>
<p>this <em>public</em> folder. </p>
</li>
<li>
<p>the application’s <em>config</em> folder. </p>
</li>
<li>
<p>all parent folders. That is, /opt/rubyapp/simpleblog , /opt and /opt/rubyapp/must also be readable and executable by Apache. </p>
<p>Then restart Apache. The application has now been deployed.</p>
</li>
</ul>
<h4>Deploying to a sub URI:</h4>
<p>Suppose that you already have a virtual host:</p>
<pre><tt>&lt;VirtualHost *:80&gt;
    ServerName <a href="http://www.yoursite.com">www.yoursite.com
</a>    DocumentRoot /www/yoursite
    &lt;Directory /www/yoursite&gt;
        Allow from all
    &lt;/Directory&gt;
&lt;/VirtualHost&gt;</tt></pre>
<p>And you want your Ruby on Rails application to be accessible from the URL <em><a href="http://www.yoursite.com/simpleblog">http://www.yoursite.com/simpleblog</a></em>.</p>
<p>To do this, make a symlink from your Ruby on Rails application’s <em>public</em> folder to a directory in the document root. For example:</p>
<pre><tt>ln -s /opt/rubyapp/simpleblog/public /www/yoursite/simpleblog</tt></pre>
<p>Next, add a <a href="http://www.modrails.com/documentation/Users%20guide%20Apache.html#RailsBaseURI">RailsBaseURI</a> option to the virtual host configuration, and also make sure that:</p>
<ul>
<li>
<p>The Apache per-directory permissions allow access to this folder. </p>
</li>
<li>
<p>MultiViews is disabled for this folder. </p>
</li>
</ul>
<p>For example (notice the lines in bold):</p>
<pre><tt>&lt;VirtualHost *:80&gt;
    ServerName <a href="http://www.yoursite.nl">www.yoursite.nl
</a>    DocumentRoot /www/yoursite
    &lt;Directory /www/yoursite&gt;
        Allow from all
    &lt;/Directory&gt;

<strong>    RailsBaseURI /simpleblog
    &lt;Directory /www/yoursite/simpleblog&gt;
        Options -MultiViews
    &lt;/Directory&gt;</strong>
&lt;/VirtualHost&gt;</tt></pre>
<p>Then restart Apache. The application has now been deployed.</p>
<p>&#160;</p>
<h4>Deploying to a port based virtual host</h4>
<p>What if you want to access your application using a port number, like <a href="http://yoursite.com:9000">http://yoursite.com:9000</a>. To do this, use Apache’s port based virtual host.</p>
<p>Add Listen directive to ports.conf or httpd.conf:</p>
<blockquote>
<p><font size="2" face="Courier New">Listen 9000</font></p>
<p>&#160;</p>
</blockquote>
<p>&#160;</p>
<p>Then add a virtual host entry to your Apache configuration file. Make sure that the following conditions are met: </p>
<ul>
<li>The virtual host’s document root must point to your Ruby on Rails application’s <em>public </em>folder. </li>
<li>The Apache per-directory permissions must allow access to this folder. </li>
<li>MultiViews must be disabled for this folder. </li>
</ul>
<ul>For example:</ul>
<blockquote>
<p><font size="2" face="Courier New">&lt;VirtualHost *:9000&gt;<br />
      <br />&#160;&#160; ServerName <a href="http://www.yoursite.com">www.yoursite.com</a> </p>
<p>&#160;&#160;&#160;&#160;&#160; DocumentRoot /opt/rubyapp/simpleblog/public </p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;Directory /opt/rubyapp/simpleblog/public&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; AllowOverride all </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Options -MultiViews </p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/Directory&gt; </p>
<p>&lt;/VirtualHost&gt;</font></p>
</blockquote>
<ul></ul>
<ul>Also, delete or comment out the NameVirtualHost * directive on your httpd.conf.</ul>
<p>Then restart Apache. The application has now been deployed.</p>
<h3></h3>
<p>&#160;</p>
<h2>Resources</h2>
<ul>
<li><a href="http://rubyonrails.org">http://rubyonrails.org</a> </li>
<li><a href="http://www.railscasts.com">http://www.railscasts.com</a> </li>
<li><a title="http://www.modrails.com" href="http://www.modrails.com">http://www.modrails.com</a> </li>
</ul>
<ul></ul>
<ul></ul>
<p>Akhmad Daniel Sembiring<br />
  <br />akhmad.daniel[at]gmail.com </p>
<p>vitraining.com -CEO</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:11bdb8ed-6bee-4ac5-99ae-eb0488fae311" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Developing" rel="tag">Developing</a>,<a href="http://technorati.com/tags/Web+Applications" rel="tag">Web Applications</a>,<a href="http://technorati.com/tags/Ruby+on+Rails" rel="tag">Ruby on Rails</a>,<a href="http://technorati.com/tags/Debian+5" rel="tag">Debian 5</a>,<a href="http://technorati.com/tags/Point+of+Sales" rel="tag">Point of Sales</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/" rel="bookmark">NetBeans IDE 6.8 Released</a></li><li><a href="http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/" rel="bookmark">Show the List of Installed Packages on Ubuntu or Debian</a></li><li><a href="http://www.dijexi.com/2010/11/engaging-customers-with-facebook-applications/" rel="bookmark">Engaging Customers with Facebook Applications</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-development-tools-and-editors-software/" rel="bookmark">Best Free Development Tools and Editors Software</a></li><li><a href="http://www.dijexi.com/2010/06/how-to-use-tor-project-anonymous-ip-with-curl-php-on-linux/" rel="bookmark">How to Use Tor Project Anonymous IP with Curl PHP on Linux</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F09%2Fdeveloping-web-based-pos-application-using-ruby-on-rails-on-debian-5%2F&amp;linkname=Developing%20Web%20Based%20POS%20Application%20Using%20Ruby%20on%20Rails%20on%20Debian%205"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/09/developing-web-based-pos-application-using-ruby-on-rails-on-debian-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Send Email on Java Application using JavaMail API</title>
		<link>http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/</link>
		<comments>http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 03:33:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[javamail]]></category>
		<category><![CDATA[sending email]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/</guid>
		<description><![CDATA[This article explain how to use JavaMail API for sending email through our Java application. This will cover simple email, HTML email, and email with attachments. The required JavaMail API can found here. Put it on a directory accessible by CLASSPATH setting. It&#8217;s a good idea to read the JavaMail FAQ. Simple Email This test [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>This article explain how to use JavaMail API for sending email through our Java application. This will cover simple email, HTML email, and email with attachments.</p>
<p>The required JavaMail API can found <a href="http://java.sun.com/products/javamail/">here</a>. Put it on a directory accessible by CLASSPATH setting. It&#8217;s a good idea to read the <a href="http://java.sun.com/products/javamail/FAQ.html">JavaMail FAQ</a>.</p>
<p> <span id="more-1322"></span><br />
<h2>Simple Email</h2>
<p>This test application is used for sending simple email.</p>
<pre>import javax.mail.*;
import javax.mail.internet.*;

import java.util.Properties;

class SimpleMail {
    public static void main(String[] args) throws Exception{
      Properties props = new Properties();
      props.setProperty(&quot;mail.transport.protocol&quot;, &quot;smtp&quot;);
      props.setProperty(&quot;mail.host&quot;, &quot;mail.server.com&quot;);
      props.setProperty(&quot;mail.user&quot;, &quot;mailuser&quot;);
      props.setProperty(&quot;mail.password&quot;, &quot;mailpwd&quot;);

      Session mailSession = Session.getDefaultInstance(props, null);
      Transport transport = mailSession.getTransport();

      MimeMessage message = new MimeMessage(mailSession);
      message.setSubject(&quot;Testing simple email by JavaMail API&quot;);
      message.setContent(&quot;This is just a test&quot;, &quot;text/plain&quot;);
      message.addRecipient(Message.RecipientType.TO,
           new InternetAddress(&quot;rhoma@irama.org&quot;));

      transport.connect();
      transport.sendMessage(message,
          message.getRecipients(Message.RecipientType.TO));
      transport.close();
    }
}</pre>
<p>&#160;</p>
<h2>HTML Email</h2>
<p>This application is a sample of sending HTML email using JavaMail API.</p>
<pre>import javax.mail.*;
import javax.mail.internet.*;

import java.util.Properties;

class SimpleHTMLMail {
    public static void main(String[] args) throws Exception{
      Properties props = new Properties();
      props.setProperty(&quot;mail.transport.protocol&quot;, &quot;smtp&quot;);
      props.setProperty(&quot;mail.host&quot;, &quot;mail.server.com&quot;);
      props.setProperty(&quot;mail.user&quot;, &quot;mailuser&quot;);
      props.setProperty(&quot;mail.password&quot;, &quot;mailpwd&quot;);

      Session mailSession = Session.getDefaultInstance(props, null);
      Transport transport = mailSession.getTransport();

      MimeMessage message = new MimeMessage(mailSession);
      message.setSubject(&quot;Testing JavaMail HTML email&quot;);
      message.setContent
         (&quot;This is just a test &lt;b&gt;HOW TO&lt;b&gt; send HTML email&quot;,                 &quot;text/html; charset=ISO-8859-1&quot;);
      message.addRecipient(Message.RecipientType.TO,
         new InternetAddress(&quot;rhoma@irama.org&quot;));

      transport.connect();
      transport.sendMessage(message,
         message.getRecipients(Message.RecipientType.TO));
      transport.close();
    }
}</pre>
<h2>Email with Attachments</h2>
<p>This is a sample application for sending email with attachment using JavaMail API. Note that you will also need additional Jar for this, the Java Activation Framework, JAF, which can be downloaded <a href="http://java.sun.com/javase/technologies/desktop/javabeans/jaf/index.jsp" target="_blank">here</a>.</p>
<pre>import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.FileDataSource;
import javax.activation.DataHandler;

import java.util.Properties;

class SimpleMailWithAttachment {
    public static void main(String[] args) throws Exception{
      boolean debug = false;
      Properties props = new Properties();
      props.setProperty(&quot;mail.transport.protocol&quot;, &quot;smtp&quot;);
      props.setProperty(&quot;mail.host&quot;, &quot;mymail.server.org&quot;);
      props.setProperty(&quot;mail.user&quot;, &quot;emailuser&quot;);
      props.setProperty(&quot;mail.password&quot;, &quot;&quot;);

      Session mailSession = Session.getDefaultInstance(props, null);
      mailSession.setDebug(debug);
      Transport transport = mailSession.getTransport();

      MimeMessage message = new MimeMessage(mailSession);
      message.setSubject(&quot;Testing javamail with attachment&quot;);

      MimeBodyPart textPart = new MimeBodyPart();
      textPart.setContent(&quot;&lt;h1&gt;Check attachment&lt;/h1&gt;&quot;, &quot;text/html&quot;);

      MimeBodyPart attachFilePart = new MimeBodyPart();
      FileDataSource fds =
          new FileDataSource(&quot;SimpleMailWithAttachment.java&quot;);
      attachFilePart.setDataHandler(new DataHandler(fds));
      attachFilePart.setFileName(fds.getName());

      Multipart mp = new MimeMultipart();
      mp.addBodyPart(textPart);
      mp.addBodyPart(attachFilePart);

      message.setContent(mp);
      message.addRecipient(Message.RecipientType.TO,
          new InternetAddress(&quot;elvis@presley.org&quot;));

      transport.connect();
      transport.sendMessage(message,
          message.getRecipients(Message.RecipientType.TO));
      transport.close();
    }
}</pre>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2ca7d2a8-7aeb-4cc0-828e-0188b37e802b" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/sending+email" rel="tag">sending email</a>,<a href="http://technorati.com/tags/java" rel="tag">java</a>,<a href="http://technorati.com/tags/javamail" rel="tag">javamail</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/03/show-the-list-of-installed-packages-on-ubuntu-or-debian/" rel="bookmark">Show the List of Installed Packages on Ubuntu or Debian</a></li><li><a href="http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/" rel="bookmark">NetBeans IDE 6.8 Released</a></li><li><a href="http://www.dijexi.com/2010/08/creating-gps-tracker-application-on-j2me-phones/" rel="bookmark">Creating GPS Tracker Application on J2ME Phones</a></li><li><a href="http://www.dijexi.com/2010/08/j2me-current-date-and-time/" rel="bookmark">J2ME Current date and Time</a></li><li><a href="http://www.dijexi.com/2009/10/funambol-for-blackberry-like-capabilities-on-cheap-handsets/" rel="bookmark">Funambol for BlackBerry-like capabilities on cheap handsets</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F07%2Fhow-to-send-email-on-java-application-using-javamail-api%2F&amp;linkname=How%20to%20Send%20Email%20on%20Java%20Application%20using%20JavaMail%20API"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Driving Traffic Into A Brand New Website Within 24 hours</title>
		<link>http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/</link>
		<comments>http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 04:54:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cheap website traffic]]></category>
		<category><![CDATA[free web traffic]]></category>
		<category><![CDATA[free website traffic]]></category>
		<category><![CDATA[web site traffic]]></category>
		<category><![CDATA[web traffic]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/</guid>
		<description><![CDATA[No traffic means you will not get sales. This is the very most important equation when it comes to internet marketing. Whether you are new to internet marketing or an experienced marketer still no one will ever get to see your site and be amazed with it when it doesn&#8217;t have any traffic at all. [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--></p>
<p>No traffic means you will not get sales. This is the very most important equation when it comes to internet marketing. Whether you are new to internet marketing or an experienced marketer still no one will ever get to see your site and be amazed with it when it doesn&#8217;t have any traffic at all. Specially for those who have just built a website having all the money making affiliate links that are all plugged in, or just a simple website wherein it promotes your own business services and products.    </p>
<p>If you have just started to be an affiliate I supposed you have already tried many means of advertising for your affiliate programs. Maybe you have already tried using safelists, submitting them manually and then moved on to millions of automated submission tools or perhaps you have also bought leads for your business.     </p>
<p>It&#8217;s possible you did make some sales and got a couple of leads, but still the results remain far from fantastic plus all of these methods are very time consuming. All this effort can be very expensive and at some point of times it can also be demoralizing. You just imagine, you are going to send powerful email advertisements to thousands of quality leads and then just hear from a few them and also before I forget, there are also those cheap traffic sites that just sell you pop overs that are useless.     </p>
<p>If you have experienced these things that I have told you well this is the only way out. </p>
<p>&#160;</p>
<p> <span id="more-1297"></span>
<p>Pay-per-click search engines where you can drive targeted traffic to your website. This is a search engine methods that doesn&#8217;t mind if your site is indexed for ages or if it&#8217;s a brand new website you have just created minutes ago. You are really assured that targeted traffic is all worth a ton. We all know that by any means communication is the most important one. In internet marketing if there is higher means of communications there is also a higher possibility of having sales because if people have already found your site they are already interested in your product and your affiliate program. Conversion could be between 3-5% if you are using good targeted keywords and well written ads.     </p>
<p>At present, the biggest and most leading search engines are Google and Overture, they have the largest network of engines. When you set up a campaign in Adwords it will not really take an hour if you only got the keywords and the ads ready. You will already see massive traffic streaming in just 15 minutes right after you have set up your campaign. This could really cost you more but you have to consider that you are only paying for the relevant clicks and not for view and for impressions and in return you will get targeted traffic and converts much better.     </p>
<p>You as a beginner in setting up for PPC ad campaigns, you are advisable to start on smaller PPC search engines because the clicks there are cheaper even though the traffic is lower. These are search engines like Miva, GoClicks,7Search.com, ExactSeek and more but however if your product is really competitive the amount of traffic offered by these search engines can add pretty much.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9ec32d32-cf04-4f00-89c0-6e6aef1082fb" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/free+web+traffic" rel="tag">free web traffic</a>,<a href="http://technorati.com/tags/free+website+traffic" rel="tag">free website traffic</a>,<a href="http://technorati.com/tags/web+traffic" rel="tag">web traffic</a>,<a href="http://technorati.com/tags/web+site+traffic" rel="tag">web site traffic</a>,<a href="http://technorati.com/tags/cheap+website+traffic" rel="tag">cheap website traffic</a></div>
</p>
<hr />You could also drive <a href="http://www.freetrafficmethod.com">free website traffic</a> using Chris Stigson&#8217;s free traffic methods: <a href="http://www.freetrafficmethod.com">http://www.freetrafficmethod.com</a>  </p>
<p>Source: <a href="http://www.submityourarticle.com">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=79615">http://www.submityourarticle.com/a.php?a=79615</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/11/engaging-customers-with-facebook-applications/" rel="bookmark">Engaging Customers with Facebook Applications</a></li><li><a href="http://www.dijexi.com/2010/11/face-your-customers-with-facebook/" rel="bookmark">Face Your Customers with Facebook</a></li><li><a href="http://www.dijexi.com/2010/11/official-presence-on-facebook-opportunities-and-pitfalls/" rel="bookmark">Official Presence on Facebook &ndash; Opportunities and Pitfalls</a></li><li><a href="http://www.dijexi.com/2010/11/facebook-and-consumer-learning-process/" rel="bookmark">Facebook and Consumer Learning Process</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2Fdriving-traffic-into-a-brand-new-website-within-24-hours%2F&amp;linkname=Driving%20Traffic%20Into%20A%20Brand%20New%20Website%20Within%2024%20hours"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Strategies To Use To Get Free Targeted Website Traffic</title>
		<link>http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/</link>
		<comments>http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 02:44:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free targeted website traffic]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/</guid>
		<description><![CDATA[Image via WikipediaHaving an online business means that you need to get free targeted website traffic or you will never make money and never succeed. There are many different strategies that can be used for getting free targeted traffic. You just need to know the more effective strategies to use. Here are the most effective [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p><DIV style="MARGIN: 1em; WIDTH: 310px; DISPLAY: block; FLOAT: right" class=zemanta-img jQuery1262573066046="1119"><A href="http://commons.wikipedia.org/wiki/Image:NYSE-floor.jpg"><IMG style="BORDER-BOTTOM: medium none; BORDER-LEFT: medium none; DISPLAY: block; BORDER-TOP: medium none; BORDER-RIGHT: medium none" alt="The floor of the New York Stock Exchange." src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/NYSE-floor.jpg/300px-NYSE-floor.jpg" width="300" height="197"></A><P style="FONT-SIZE: 0.8em" class=zemanta-img-attribution>Image via <A href="http://commons.wikipedia.org/wiki/Image:NYSE-floor.jpg">Wikipedia</A></P></DIV><P>Having an online <A class="zem_slink" title="Business" href="http://en.wikipedia.org/wiki/Business" rel="wikipedia">business</A> means that you need to get free targeted <A class="zem_slink" title="website traffic" href="http://www.freetrafficsystem.com/" rel="homepage" jquery1262573066046="655">website traffic</A> or you will never make money and never succeed. There are many different strategies that can be used for getting free targeted <A class="zem_slink" title="Web traffic" href="http://en.wikipedia.org/wiki/Web_traffic" rel="wikipedia">traffic</A>. You just need to know the more effective strategies to use. <BR><BR>Here are the most effective strategies that anyone can use for free targeted traffic to any business online. <BR><BR>One: <A class="zem_slink" title="Article marketing" href="http://en.wikipedia.org/wiki/Article_marketing" rel="wikipedia" jquery1262573066046="752">Article marketing</A> &#8211; This is one of the most effective strategies you can use for building targeted traffic to your site now and far into the future. There are many ways online that articles can be used to get your site out there. You can distribute them to forums, article directories, social <A class="zem_slink" title="Marketing" href="http://en.wikipedia.org/wiki/Marketing" rel="wikipedia">marketing</A> sites or even your blog. <BR><BR>Two: Social marketing &#8211; This is a method that you definitely need to be using because it is becoming one of the best and most effective ways to market any business online. There are many social sites you should use. Find these sites and educate yourself on using it effectively and before you know it, your business will be receiving a lot of targeted traffic. </P> <P>&nbsp;</P>
<div id='extendedEntryBreak' name='extendedEntryBreak'></div>
<p> <P><BR><BR>Three: Forums &#8211; Find forums that are related to your niche and get involved in them. Set up a signature file with your business information. Each time you post a question, make a comment, answer a question, or do any type of post it is displayed giving you free marketing. <BR><BR>Four: SEO &#8211; Make sure your <A class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</A> is optimized for the <A class="zem_slink" title="Web search engine" href="http://en.wikipedia.org/wiki/Web_search_engine" rel="wikipedia">search engines</A>. Pay close attention to what keywords are being used and then use as many targeted ones as possible. Search engines will pick up these keywords and then you will start to see your site placed in their free results. <BR><BR>Five: Videos &#8211; There are many free sites online that help you make a video. You just need to have a webcam and then find these sites. Video is an effective and popular <A class="zem_slink" title="Advertising" href="http://en.wikipedia.org/wiki/Advertising" rel="wikipedia">advertising</A> tool to get targeted traffic. <BR><BR>These are the most effective strategies that you want to use for free targeted website traffic. Educate yourself on how to use each strategy effectively and then put into action what you learn. You want to have numerous marketing methods working for you to get more traffic. This is the only way to find success online and make money. </P> <P> <HR> Suzanne Morrison is the owner of an <A class="zem_slink" title="Internet" href="http://en.wikipedia.org/wiki/Internet" rel="wikipedia">internet</A> business ideas website that helps people achieve a <A href="http://www.3stepstosearchenginesuccess.com/">high search engine ranking </A>website. Visit it today for a free <A href="http://www.3stepstosearchenginesuccess.com/free-seo-course.php">search engine optimization tutorial</A>.<BR><BR>Source: <A href="http://www.submityourarticle.com/">http://www.submityourarticle.com</A><BR><BR>Permalink: <A href="http://www.submityourarticle.com/a.php?a=78908">http://www.submityourarticle.com/a.php?a=78908</A>  <P></P> <P></P> <P></P> <P></P> <P></P> <P></P> <P></P> <P></P>   <DIV style="MARGIN-TOP: 10px; HEIGHT: 15px" class=zemanta-pixie><A class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e2b080f4-a102-48a5-95ea-86de203826ce/"><IMG style="BORDER-BOTTOM-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-TOP-STYLE: none; FLOAT: right; BORDER-LEFT-STYLE: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=e2b080f4-a102-48a5-95ea-86de203826ce"></A></DIV></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/" rel="bookmark">How To Generate Free Website Traffic FAST</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2010%2F01%2F5-strategies-to-use-to-get-free-targeted-website-traffic%2F&amp;linkname=5%20Strategies%20To%20Use%20To%20Get%20Free%20Targeted%20Website%20Traffic"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans IDE 6.8 Released</title>
		<link>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/</link>
		<comments>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:39:45 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[IT News]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[Netbeans]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/</guid>
		<description><![CDATA[NetBeans™ IDE 6.8 offers best-in-class support for the entire Java™ Platform Enterprise Edition 6 specification and the Sun GlassFish™ Enterprise Server v3 platform. Simplify Java application development with Java EE 6 language features: less XML configuration and more POJO-like development; easily target and deploy to GlassFish v3. NetBeans IDE continues to be the tool of [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p><b>NetBeans™ IDE 6.8</b> offers best-in-class support for the <b>entire Java™ Platform Enterprise Edition 6 specification</b> and the <b>Sun GlassFish™ Enterprise Server v3 platform</b>. Simplify Java application development with Java EE 6 language features: less XML configuration and more POJO-like development; easily target and deploy to GlassFish v3. </p>
<p><b>NetBeans IDE</b> continues to be the tool of choice for top development languages, and this release includes new features and improved support for <b>PHP 5.3</b> and the <b>Symfony framework</b>, the latest <b>JavaFX™ SDK 1.2.1, C/C++, Ruby, Maven</b> and more. Integration with <b>Project Kenai</b>, a collaborative environment for hosting open-source projects, now offers full support for <b>JIRA</b>, as well as improved issue tracker integration. As always, the <b>NetBeans Platform</b> provides a rock-solid application framework that can save years of development time. </p>
<p>Supporting Java EE 6 improvements first, NetBeans IDE 6.8 boosts developer productivity and lets developers take advantage of today&#8217;s latest languages and platform features. </p>
<p>NetBeans IDE 6.8 is available in English, Brazilian-Portuguese, Japanese and Simplified Chinese. </p>
<p><a href="http://netbeans.org/downloads/index.html?cid=928534"><img alt="Get Tomorrow Today with NetBeans IDE 6.8!" src="http://netbeans.org/images_www/newsletter/6.8/header.jpg" width="675" height="153" /></a></p>
<p> <span id="more-1294"></span><br />
<h2>Release Highlights</h2>
<p>Java Enterprise Edition 6</p>
<ul>
<li>JavaServer™ Faces 2.0 for web interfaces and the ability to use EJB™ software in web applications </li>
<li>Java Persistence JPA 2.0 and RESTful web services support </li>
<li>Deployment, debugging and profiling with GlassFish v3 </li>
</ul>
<p>JavaServer Faces 2.0 (Facelets)</p>
<ul>
<li>Code completion, error hints, namespace completion, documentation popups, and tag auto-import for Facelets </li>
<li>Editor support for Facelets libraries, composite components, expression language </li>
</ul>
<p>JavaFX</p>
<ul>
<li>Support for JavaFX SDK 1.2.1 </li>
<li>Improved navigation, code completion, and editor hints </li>
</ul>
<p>PHP</p>
<ul>
<li>PHP 5.3 support </li>
<li>Symfony framework support </li>
</ul>
<p>Kenai.com: Connected Developer</p>
<ul>
<li>Full JIRA support </li>
<li>Improved issue tracker integration </li>
</ul>
<p>Maven</p>
<ul>
<li>Improved support for Java EE 6, Groovy, Scala projects </li>
<li>Customizable dependency exclusion in dependency graph </li>
</ul>
<p>Ruby</p>
<ul>
<li>Support for Rails 2.3.4 apps with dispatchers, JRuby 1.4, Ruby 1.9 debugging, RSpec 1.2.7 </li>
<li>Improved rename refactoring, type inference, and navigation </li>
</ul>
<p>C/C++</p>
<ul>
<li>Profiling: New Thread Microstates indicator and Thread Details view </li>
<li>Faster synchronization during remote development </li>
</ul>
<h2>Learn More</h2>
<ul>
<li><a href="http://netbeans.org/community/releases/68/">NetBeans IDE 6.8 Release Information</a></li>
<li><a href="http://netbeans.org/kb/index.html">NetBeans IDE 6.8 Tutorials and Videos</a></li>
<li><a href="http://platform.netbeans.org/">NetBeans Platform 6.8</a></li>
<li><a href="http://netbeans.org/community/index.html">NetBeans Community</a></li>
<li><a href="http://twitter.com/netbeans">NetBeans on Twitter</a></li>
<li><a href="http://planetnetbeans.org/">Planet NetBeans</a></li>
<li><a href="https://channelsun.sun.com/category/playlist?id=81">NetBeans on ChannelSun</a></li>
</ul>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:797a2db2-ac8b-4a7f-8d96-73eb544c29d5" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/netbeans" rel="tag">netbeans</a>,<a href="http://technorati.com/tags/ide" rel="tag">ide</a>,<a href="http://technorati.com/tags/java" rel="tag">java</a>,<a href="http://technorati.com/tags/Software+Development" rel="tag">Software Development</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/best-free-development-tools-and-editors-software/" rel="bookmark">Best Free Development Tools and Editors Software</a></li><li><a href="http://www.dijexi.com/2009/06/joomla-15-mengganti-footer/" rel="bookmark">Joomla 1.5: Mengganti Footer</a></li><li><a href="http://www.dijexi.com/2009/07/zero-day-vulnerability-hits-microsoft-directshow/" rel="bookmark">Zero Day Vulnerability Hits Microsoft DirectShow</a></li><li><a href="http://www.dijexi.com/2009/08/zend-studio-7-0-released/" rel="bookmark">Zend Studio 7.0 Released</a></li><li><a href="http://www.dijexi.com/2010/02/funambol-mobile-open-source-book-released/" rel="bookmark">Funambol Mobile Open Source Book Released</a></li></ul></div><!--INFOLINKS_OFF--><p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-7773800616131770";
/* horizontal */
google_ad_slot = "1931057994";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F12%2Fnetbeans-ide-6-8-released%2F&amp;linkname=NetBeans%20IDE%206.8%20Released"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/12/netbeans-ide-6-8-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newspaper Articles : Increase Traffic Drastically! Turn Your News Article to Video Details Here!</title>
		<link>http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/</link>
		<comments>http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 01:16:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[article video]]></category>
		<category><![CDATA[newspaper article]]></category>
		<category><![CDATA[newspaper articles]]></category>
		<category><![CDATA[video article]]></category>
		<category><![CDATA[video articles]]></category>
		<category><![CDATA[video directories]]></category>
		<category><![CDATA[video marketing]]></category>
		<category><![CDATA[video stream]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/</guid>
		<description><![CDATA[Online videos have emerged in the last few years to become one of the preferred methods to present your message to the on line community. Every major and even small newspapers have a online presence these days. There are thousands of newspaper articles that are published online on any given day. And there is a [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Online videos have emerged in the last few years to become one of the preferred methods to present your message to the on line community. Every major and even small newspapers have a online presence these days. There are thousands of newspaper articles that are published online on any given day. And there is a considerable amount of traffic that is driven from
<div style="margin: 1em; width: 260px; display: block; float: right" class="zemanta-img" jquery1257285970640="12102"><a href="http://www.crunchbase.com/product/veoh"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Image representing Veoh as depicted in CrunchBase" src="http://www.crunchbase.com/assets/images/resized/0000/4381/4381v8-max-250x250.jpg" width="250" height="139" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://www.crunchbase.com/">CrunchBase</a></p>
</p></div>
<p> these posted articles. Now with the emergence of Video directories such as <a class="zem_slink" title="YouTube" href="http://www.youtube.com/" rel="homepage">Youtube</a> you are able to increase the online traffic of your newspaper articles drastically by combining your article marketing and video marketing together. There are statistics that show there are 50,000 viewings of videos on Youtube daily. There are also statics that show Youtube has over 150,000 videos submitted to their website on a daily basis.   </p>
<p>This amount of traffic is to big to ignore if you have a import message you want to convey in your online newspaper articles. In my article today I want to present to you 3 simple steps to boost the chances of your news articles on video being watched on Youtube and other video directories. <a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> seems to love video streams so if you learn what google looks for when and the methods google uses to list your video articles is very similar to other standard directory listings. With some basic submission tips you can tap into both article and video marketing medias with even a stronger voice to the online community.   <br /><span id="more-1291"></span>  <br />Step# 1 Create a keyword rich tittle for your article video from keywords that are used in your newspaper article.   </p>
<p>When you create video articles you need to optimize your videos tittle just as you would optimize the tittle of a newspaper article if you were submitting it to various newspaper and article directories. Only know you will be submitting to video directories such as,Youtube, Blim.tv, Howcast, <a class="zem_slink" title="Photobucket" href="http://www.photobucket.com/" rel="homepage">Photobucket</a>, <a class="zem_slink" title="Veoh" href="http://veoh.com/" rel="homepage">Veoh</a>, Vsocial, <a class="zem_slink" title="Dailymotion" href="http://dailymotion.com/" rel="homepage">Dailymotion</a>, <a class="zem_slink" title="Metacafe" href="http://metacafe.com/" rel="homepage">Metacafe</a>, <a class="zem_slink" title="Revver" href="http://revver.com/" rel="homepage">Revver</a>, <a class="zem_slink" title="Viddler" href="http://viddler.com/" rel="homepage">Viddler</a>, <a class="zem_slink" title="Yahoo!" href="http://www.yahoo.com/" rel="homepage">Yahoo</a> video, <a class="zem_slink" title="Facebook" href="http://facebook.com/" rel="homepage">Face Book</a>, Myspace Video, and Sclipo. For example if you have a online newspaper article about distance running, then the the first two words of your tittle would be &quot;distance Running :&quot; followed by a space and a Colon. Then some where before the end of the tittle use a secondary key word phrase that supports your article video. Here&#8217;s an example of a tittle that would work &quot;Distance Running: Tips On How To Be Competitive In a 5k Race&quot;   </p>
<p>Step# 2 Optimize your video article description using keyword rich content.   </p>
<p>Just like in your tittle google looks for keywords that are are about your video article. Make sure the keywords you use are actually used in article video. Video directories such as Youtube, Blim.tv, Howcast, Photobucket, Veoh, Vsocial, Dailymotion, Metacafe, Revver, Viddler, Yahoo video, Face Book, Myspace Video,and Sclipo Will also use keywords from your description to locate specific videos when people do a search.   </p>
<p>Step# 3 Using Video tags that relate to your video article.   </p>
<p>It is very important do not overlook this step when you submit to your article video to the video directories.Many people overlook the video tags when they submit their article videos to the video directories and this is a serious mistake if you want to get your video article watch numerous times at the video directories. At minimum you need to use tags such as the main keyword phrases you used in your tittle and description. Ideally you need to identify at least 5 to 7 keywords, or keyword phrase that are used in your article video. The video directories use these tags to list relevant videos when people search for a specific video topic they want to see.   </p>
<p>Well that concludes my article about video newspaper articles. I hope the information we have provided will be useful.Have a nice day!
</p>
<hr />Visit here If you want more details about <a title="newspaper article video" href="http://www.oldfishinghole.com/article-marketing-strategy.html" mce_href="http://www.oldfishinghole.com/article-marketing-strategy.html">newspaper article videos</a> Your article can now talk Revolutionary software turns your articles to video in 3 minutes! Take A Free Test Drive Today! <a href="http://www.oldfishinghole.com/article-marketing-strategy.html" mce_href="http://www.oldfishinghole.com/article-marketing-strategy.html">visit here</a> for details  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=68219">http://www.submityourarticle.com/a.php?a=68219</a>
</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5c6a27e3-66a1-4ceb-bccc-baa30c319d0e" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/video+directories" rel="tag">video directories</a>,<a href="http://technorati.com/tags/article+video" rel="tag">article video</a>,<a href="http://technorati.com/tags/video+article" rel="tag">video article</a>,<a href="http://technorati.com/tags/newspaper+articles" rel="tag">newspaper articles</a>,<a href="http://technorati.com/tags/video+articles" rel="tag">video articles</a>,<a href="http://technorati.com/tags/newspaper+article" rel="tag">newspaper article</a>,<a href="http://technorati.com/tags/video+stream" rel="tag">video stream</a>,<a href="http://technorati.com/tags/video+marketing" rel="tag">video marketing</a></div>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://seowithfries.com/2009/go-viral-on-web-2-0-one-billion-served/">Go Viral on Web 2.0-One Billion served</a> (seowithfries.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.buildabetterblog.com/2009/10/visibility-via-video-how-to-extend-your-reach-online.html">Visibility via Video: How to Extend Your Reach Online</a> (buildabetterblog.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.write4kids.com/blog/2009/08/01/our-top-posts-from-the-past-month-9/">Our Top Posts From the Past Month</a> (write4kids.com)</li>
</ul></div>
</p>
</p>
</p>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85025026-68b0-42ab-a1f8-ccfddfbb6999/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=85025026-68b0-42ab-a1f8-ccfddfbb6999" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/" rel="bookmark">How To Generate Free Website Traffic FAST</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/internet-selling-for-newbies-the-4-fundamentals/" rel="bookmark">Internet Selling For Newbies - The 4 Fundamentals</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F11%2Fnewspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here%2F&amp;linkname=Newspaper%20Articles%20%3A%20Increase%20Traffic%20Drastically%21%20Turn%20Your%20News%20Article%20to%20Video%20Details%20Here%21"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/11/newspaper-articles-increase-traffic-drastically-turn-your-news-article-to-video-details-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Site Traffic Promotion &#8211; How To Promote Your Web Site To Get Free Traffic</title>
		<link>http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/</link>
		<comments>http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 01:13:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[traffic promotion]]></category>
		<category><![CDATA[web site traffic promotion]]></category>
		<category><![CDATA[website traffic promotion]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/</guid>
		<description><![CDATA[If you come online and put up a website or blog, but feel that your website is just another drop in the ocean and can&#8217;t stick out among the millions of other websites trying to get the attention of the rest of the world. Well, attracting traffic is an easy task when you know how [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>If you come <a class="zem_slink" title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web" rel="wikipedia">online</a> and put up a website or blog, but feel that your website is just another drop in the ocean and can&#8217;t stick out among the millions of other websites trying to get the attention of the rest of the world. Well, attracting traffic is an easy task when you know how the fundamentals of generating traffic works.     </p>
<div style="margin: 1em; width: 160px; display: block; float: right" class="zemanta-img" jquery1257285970640="5064"><a href="http://www.daylife.com/image/07obfi96Kycwb?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=07obfi96Kycwb&amp;utm_campaign=z1"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="CHICAGO - FEBRUARY 23:  Google employees wait ..." src="http://cache.daylife.com/imageserve/07obfi96Kycwb/150x100.jpg" width="150" height="100" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.daylife.com/source/Getty_Images">Getty Images</a> via <a href="http://www.daylife.com/">Daylife</a></p>
</p></div>
<p>Since there are basically 3 ways to drive more traffic; Paying for it, Creating it, and Borrowing it you have a few choices when it comes to adding more traffic. This article will show you a few <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">web site</a> traffic promotion strategies that are completely free in the &quot;create traffic&quot; area.     </p>
<p>The first thing you must understand when it comes to get more <a class="zem_slink" title="website traffic" href="http://www.freetrafficsystem.com/" rel="homepage">free traffic</a> it&#8217;s the simple fact that thousands of people are just like you, wanting the same visitors as you do. You have to differenatiate yourself by becoming more valuable than your competitors. In order to add value to people&#8217;s lives you must know what they want. Therefor you are likely doing your traffic generation wrong. You are wondering how you can &quot;get more traffic&quot; when in reality you have to attract it by adding value to their life. </p>
<p>&#160;</p>
</p>
<p> <span id="more-1290"></span>
<p>Web site traffic promotion is easy when you follow these few methods to add value:     </p>
<p>* Creating and writing valuable articles.     </p>
<p>* Uploading and promoting videos.     </p>
<p>* Write and share a blog with tips and tricks.     </p>
<p>* Become active in <a class="zem_slink" title="Social media" href="http://www.wikinvest.com/concept/Social_media" rel="wikinvest">social media</a> and become an attractive <a class="zem_slink" title="Force" href="http://en.wikipedia.org/wiki/Force" rel="wikipedia">force</a> that gets the attention of your <a class="zem_slink" title="Target market" href="http://en.wikipedia.org/wiki/Target_market" rel="wikipedia">target market</a>.     </p>
<p>These are some of the web site traffic promotion strategies that I personally use to promote my 60+ websites, but there are many more ways to use the internet to share a message you believe in. <a class="zem_slink" title="Video" href="http://en.wikipedia.org/wiki/Video" rel="wikipedia">Video</a> is one of the most powerful ways that I attract traffic.     </p>
<p>The reason video works so well is because of the instant connection you can create between yourself and a potential visitor, and if your video has enough value it can spread virally and add thousands of visitors to your websites.     </p>
<p>The reason I focus highly on video is because the sheer power of <a class="zem_slink" title="YouTube" href="http://www.youtube.com/" rel="homepage">YouTube</a> is so amazing. A keword that is hard to rank for in <a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> with millions of competing pages can easily be dominated on YouTube and other <a class="zem_slink" title="Video hosting service" href="http://en.wikipedia.org/wiki/Video_hosting_service" rel="wikipedia">video sharing</a> websites. So if you are not using video in your traffic promotion right now you&#8217;d be well of giving it a good try!     </p>
<p>You should also submit articles as often as you can. They can be short and informative, but bring a lot of free targeted traffic to your websites. </p>
</p>
<hr />Learn more <a href="http://www.websitetrafficpromotion.net/">web site traffic promotion</a> strategies by visiting <a href="http://www.websitetrafficpromotion.net/">http://www.websitetrafficpromotion.ne</a>t right now!  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=71595">http://www.submityourarticle.com/a.php?a=71595</a>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://socialwebschool.com/?p=280">Three steps to getting started in Twitter</a> (socialwebschool.com) </li>
<li class="zemanta-article-ul-li"><a href="http://bigdaddyrichard-swirlingthoughts.blogspot.com/2009/11/from-great-minds-comes-great-ideas.html">From Great Minds Comes Great Ideas &#8211; You&#8217;ll Find Them All At Great Minds Design</a> (bigdaddyrichard-swirlingthoughts.blogspot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://techie-buzz.com/webmaster-tips/see-the-technologies-behind-a-website-with-sitonomy.html">See The Technologies Behind A Website With Sitonomy</a> (techie-buzz.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blogavenues.blogspot.com/2009/11/create-and-post-unlimited-classified.html">Post unlimited free classified ads.</a> (blogavenues.blogspot.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85025026-68b0-42ab-a1f8-ccfddfbb6999/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=85025026-68b0-42ab-a1f8-ccfddfbb6999" /></a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3e3dcfee-d386-4e19-8907-f99a796651a3" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/web+site+traffic+promotion" rel="tag">web site traffic promotion</a>,<a href="http://technorati.com/tags/traffic+promotion" rel="tag">traffic promotion</a>,<a href="http://technorati.com/tags/website+traffic+promotion" rel="tag">website traffic promotion</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/" rel="bookmark">How To Generate Free Website Traffic FAST</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F11%2Fweb-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic%2F&amp;linkname=Web%20Site%20Traffic%20Promotion%20%26%238211%3B%20How%20To%20Promote%20Your%20Web%20Site%20To%20Get%20Free%20Traffic"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Generate Free Website Traffic FAST</title>
		<link>http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/</link>
		<comments>http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 01:10:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[online business]]></category>
		<category><![CDATA[reports]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[strategies]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[visitors]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/</guid>
		<description><![CDATA[Copyright (c) 2009 Willie Crawford Image by Kansir via Flickr It goes without saying that if you don&#8217;t have website traffic, the other components of your web business can&#8217;t work very effectively. Without eyeballs on your sales letter, you won&#8217;t make any sales! There are many ways to generate fast free website traffic, but many [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Copyright (c) 2009 Willie Crawford   </p>
<div style="margin: 1em; display: block; float: right" class="zemanta-img"><a href="http://www.flickr.com/photos/86499133@N00/159726036"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Google Analytics" src="http://farm1.static.flickr.com/44/159726036_e90f636d35_m.jpg" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/86499133@N00/159726036">Kansir</a> via Flickr</p>
</p></div>
<p>It goes without saying that if you don&#8217;t have <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a> <a class="zem_slink" title="Web traffic" href="http://en.wikipedia.org/wiki/Web_traffic" rel="wikipedia">traffic</a>, the other components of your web business can&#8217;t work very effectively. Without eyeballs on your sales letter, you won&#8217;t make any sales!    </p>
<p>There are many ways to generate fast free website traffic, but many of them aren&#8217;t readily available to the average, lesser-known marketer.    </p>
<p>Joint ventures are an excellent way to get tons of others to send you there traffic. However, joint ventures hinge upon relationships/connections, and many of the people with the most traffic have tons of their own products to promote. Those who own large lists are also approached about joint ventures so often that they may have commitments that extend out past six months.</p>
<p>&#160;</p>
<p> <span id="more-1289"></span>
<p>If you do have a large list, getting immediate traffic to your website can be as simple as sending a compelling email. However, it takes time to build a quality list. It also takes time to build strong relationships and trust with your list members.    </p>
<p>Another one of my favorite ways to generate lots of <a class="zem_slink" title="website traffic" href="http://www.freetrafficsystem.com/" rel="homepage">free traffic</a> is by creating an inexpensive product and then allowing others to selling it and keep 100% of the profit. However, that does require a product on a really hot topic, and you still have to recruit affiliates.    </p>
<p>You are also giving away 100% of the money on the sale (sacrificing early profits), and your goal there is not so much traffic but to build a list. I do often do this, using a script called Rapid Action Profits, which deposits proceed from the sale directly into my affiliates Paypal accounts while adding the new subscriber to my list automatically.    </p>
<p>However, for generating traffic that is free, fast, and even long-term, I recommend creating lots of content and putting it in the path of the <a class="zem_slink" title="Web search engine" href="http://en.wikipedia.org/wiki/Web_search_engine" rel="wikipedia">search engines</a>. In fact, I often do this when I&#8217;m launching a new product, or even promoting a new affiliate product. Here are the down and dirty steps that I take:    </p>
<p>1) Do your keyword research, striving to identify the &quot;buying keywords&quot; that your target customers are using. One easy way to do that is to use the &quot;<a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> External Keyword Tool&quot; to research which keywords get the most searches. This tool is free to use, and will also suggest related keywords to you.    </p>
<p>What you are looking for is evidence that people are searching on a given phrase, and that those people are spending money. The Google External Keyword Tool will tell you this.    </p>
<p>You can also enter a keyword phrase that you plan to target into the regular Google search box, and look at how many Google AdWords ads display on the right side of the page. These are people paying for each click from people who search on that term, and then click through to their sites. Presumably, they wouldn&#8217;t pay for those clicks unless these customers were spending money.    </p>
<p>2) Use your target keywords to craft titles for 20 articles. In addition to the keywords make sure that your title also promises some benefit. The article title is what&#8217;s going to get you the most traction in the search engines.    </p>
<p>3) Actually write those 20 articles. They can be as short as 400 words. If you have trouble writing, go to several of the bigger article directories and read what others have written on the topic. Also Google the keyword and look at what experts have had to say on the topic. Then write the articles.    </p>
<p>If you are still stumped, simply plug your mike into your computer and then talk about the topic. Most of us are certainly good at talking. Record your thoughts then go back and organize them and you have an article (or several articles).    </p>
<p>Add a resource box to the article that tells the reader to go to your site for more information, or resources (your product) on the topic. When linking back to your site, use your keyword as the anchor text where permitted.    </p>
<p>4) Turn each article into a video. The simplest way to do this is probably to put your main points on <a class="zem_slink" title="Microsoft PowerPoint" href="http://office.microsoft.com/powerpoint" rel="homepage">PowerPoint</a> slides. Then as you read your article, flip through the slides, and record it using Camtasia screen capture software. As easy as that, you have a movie.    </p>
<p>5) Turn each article into a podcast (an MP3). Just read the article and record it using software built right into your computer. You can also download free recording software for tons of places on the internet. One of my favorites is Audacity.    </p>
<p>6) Write several press releases using the article titles as your topic. Here you need to get a little creative, but as an example, for this article I would use, &quot;Website Traffic Expert Reveals How To Generate Free website Traffic Fast.&quot;    </p>
<p>These press releases are being written for SEO purposes, so the exact wording is not so critical. You are going to share several point in the press release and then you are going to link to one or two websites that you want to call attention to. Your links will use your keywords as the anchor text.    </p>
<p>7) Submit these articles, videos, podcasts, and press releases to article directories, <a class="zem_slink" title="Video hosting service" href="http://en.wikipedia.org/wiki/Video_hosting_service" rel="wikipedia">video sharing</a> sites, podcast aggregators, and free press release sites. Since I do this for numerous products and projects, I use an automated submission site. Being a very prolific <a class="zem_slink" title="Writer" href="http://en.wikipedia.org/wiki/Writer" rel="wikipedia">writer</a>, I have weeks when I may do 20-40 articles (while still running my web business).    </p>
<p>8) &quot;Rinse and repeat!&quot; What happens over time is that you&#8217;ll soon have so much content in cyberspace that you&#8217;ll achieve critical mass. At that point you&#8217;ll rank for your most important keywords as well as lots of longtail keywords. At that point, you&#8217;ll be amazed at the traffic.    </p>
<p>To speed up the process you can also post your articles to an optimized <a class="zem_slink" title="WordPress" href="http://wordpress.org/" rel="homepage">WordPress</a> blog that&#8217;s been configured to &quot;ping&quot; <a class="zem_slink" title="RSS" href="http://en.wikipedia.org/wiki/RSS" rel="wikipedia">RSS</a> aggregators, social networking sites, and bookmarking sites each time that you post. If you don&#8217;t know how to do that, it&#8217;s beyond the scope of this article, but most webmasters familiar with WordPress can set that up quickly for you. WordPress is very simple, yet very powerful.    </p>
<p>There you have it, &quot;How to generate free website traffic fast!&quot; Yes, there is work involved, but when you see the results, you&#8217;ll know that it was well worth it.     </p>
<p><b><i>About The Author:</i></b>    </p>
<p>Willie Crawford has been marketing online for 13 years, and used article marketing most of that time (writing over 1500 articles). His favorite tools for automatically distributing his articles, videos, podcasts, and press releases is the automated submission site: <a href="http://easypushbuttontraffic.com/" target="_blank">http://EasyPushButtonTraffic.com/</a>     </p>
<p>Read more articles written by: <a href="http://thephantomwriters.com/recent/author/willie-crawford.html" target="_blank">Willie Crawford</a>    </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:89920e14-cc24-45f5-b40f-97c9eb595e94" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/website" rel="tag">website</a>,<a href="http://technorati.com/tags/websites" rel="tag">websites</a>,<a href="http://technorati.com/tags/online+business" rel="tag">online business</a>,<a href="http://technorati.com/tags/traffic" rel="tag">traffic</a>,<a href="http://technorati.com/tags/visitors" rel="tag">visitors</a>,<a href="http://technorati.com/tags/sales" rel="tag">sales</a>,<a href="http://technorati.com/tags/reports" rel="tag">reports</a>,<a href="http://technorati.com/tags/strategies" rel="tag">strategies</a>,<a href="http://technorati.com/tags/strategy" rel="tag">strategy</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.wealthyways4you.com/online-business/build-your-business-with-the-help-of-lead-generation">Build Your Business With The Help Of Lead Generation</a> (wealthyways4you.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.socialmediatoday.com/SMC/117644">How To Use LinkedIn Groups To Drive Website Traffic</a> (socialmediatoday.com)</li>
<li class="zemanta-article-ul-li"><a href="http://maketecheasier.com/create-a-video-channel-from-different-video-sites/2009/10/31">How to Create a Video Channel From Different Video Sharing Sites</a> (maketecheasier.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85025026-68b0-42ab-a1f8-ccfddfbb6999/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=85025026-68b0-42ab-a1f8-ccfddfbb6999" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/" rel="bookmark">5 Tips To Create a Free Website</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F11%2Fhow-to-generate-free-website-traffic-fast%2F&amp;linkname=How%20To%20Generate%20Free%20Website%20Traffic%20FAST"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/11/how-to-generate-free-website-traffic-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is The Best Web Content Management Software</title>
		<link>http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/</link>
		<comments>http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 05:32:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[content management software]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/</guid>
		<description><![CDATA[Now that your site is up and running, you&#8217;ll need to be able to manage the content in the best way possible. There are a number of web content management software that you may want to take a look at to get the job done. Each program is tailored for both larger or smaller websites, [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Now that your site is up and running, you&#8217;ll need to be able to manage the <a class="zem_slink" title="Web content" href="http://en.wikipedia.org/wiki/Web_content" rel="wikipedia">content</a> in the best way possible. There are a number of web content management <a class="zem_slink" title="Computer software" href="http://en.wikipedia.org/wiki/Computer_software" rel="wikipedia">software</a> that you may want to take a look at to get the job done. Each program is tailored for both larger or smaller websites, and the content management tools that you&#8217;ll find will definitely help you to keep your site in order.     </p>
<p>In many cases, companies or businesses will create their own web content management software in order to keep all the content, graphics, and html codes on the site updated, but recently, there have been a number of companies that have created software that you may want to check out if you don&#8217;t have a technical support department quite yet.     </p>
<p>One of the web content management software programs that you may want to look into is <a class="zem_slink" title="TYPO3" href="http://www.typo3.com/" rel="homepage">Typo3</a>, which is an enterprise free management system. This software is <a class="zem_slink" title="Open Source" href="http://www.wikinvest.com/concept/Open_Source" rel="wikinvest">Open Source</a> as well, and has powerful tools that will keep your <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a> looking its best with the latest content. Another enterprise management system that you may want to consider is <a class="zem_slink" title="Vignette Corporation" href="http://www.vignette.com/" rel="homepage">Vignette</a>. It is easy to install and understand, and could save your company a considerable amount of money as well. </p>
<p>&#160;</p>
<p> <span id="more-1281"></span>
<p>If you want to be able to deliver your website in the most convenient format possible, you may want to try the web content management software powered by DynaBase. This way, you can deliver the site in <a class="zem_slink" title="XML" href="http://en.wikipedia.org/wiki/XML" rel="wikipedia">XML</a> instead of <a class="zem_slink" title="HTML" href="http://en.wikipedia.org/wiki/HTML" rel="wikipedia">HTML</a> if need be. If you prefer HTML format, EGrail will write the HTML coding for you, and it will interact with the automatic data delivery system that is set up for your site, so you&#8217;ll be able to get news feeds on a regular basis.     </p>
<p>Of course, you want to make sure that all the content on your site is edited and accurate, and web content management software like <a class="zem_slink" title="RedDot" href="http://en.wikipedia.org/wiki/RedDot" rel="wikipedia">RedDot</a> will help you to get the job done. You can edit the documents that have been uploaded onto your site on the Web instead of having to use a word processing tool, and no HTML coding is required.     </p>
<p>You also want to make sure that you have access control when you&#8217;re choosing your software. This will prevent unauthorized users from making edits on your site, and could save your site from becoming &#8216;infected&#8217; with a virus. <a class="zem_slink" title="Content management system" href="http://en.wikipedia.org/wiki/Content_management_system" rel="wikipedia">Web content management</a> software can be found at your local electronic and computer stores in most cases. </p>
</p>
<hr />Indeed, many webdesign companies have their own <a href="http://www.webgenerator.nl/website-maken-cms-content-management-systeem.htm">content management systeem</a> . In case you need a site, or part of your site, in Dutch then you way want to check out the possibilities at <a href="http://www.webgenerator.nl/">website maken</a>  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=68600">http://www.submityourarticle.com/a.php?a=68600</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:28e9b822-5df4-4516-bb20-153781ea0562" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/content+management" rel="tag">content management</a>,<a href="http://technorati.com/tags/content+management+software" rel="tag">content management software</a>,<a href="http://technorati.com/tags/cms" rel="tag">cms</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://techhotspot.com/2009/09/18/getsimple/">GetSimple</a> (techhotspot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.techcrunch.com/2009/09/15/tc50-crowdfusion-merges-the-best-features-of-blogs-wikis-and-more-into-one-unified-cms/">TC50: CrowdFusion Merges The Best Features Of Blogs, Wikis, And More Into One Unified CMS</a> (techcrunch.com) </li>
<li class="zemanta-article-ul-li"><a href="http://netwala.blogspot.com/2009/06/zimplitthe-easiest-open-source-content.html">Zimplit:The easiest Open Source Content Management System for small web- and minisites</a> (netwala.blogspot.com)</li>
<li class="zemanta-article-ul-li"><a href="http://blog.jonudell.net/2009/08/25/purple-numbers-for-pdf-documents/">Purple Numbers for PDF documents?</a> (jonudell.net)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/a326d33d-d6c8-4ef1-9335-bca2a402afa8/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=a326d33d-d6c8-4ef1-9335-bca2a402afa8" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/best-free-system-management-file-management-system-maintenance-anti-virus-anti-spyware-and-firewalls-software/" rel="bookmark">Best Free System Management, File Management, System Maintenance, Anti-virus, Anti-spyware and Firewalls Software</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-imaging-tools-graphics-3d-software-image-managers-software/" rel="bookmark">Best Free Imaging Tools, Graphics, 3D Software, Image Managers Software</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-productivity-software/" rel="bookmark">Best Free Productivity Software</a></li><li><a href="http://www.dijexi.com/2009/07/microsoft-warns-of-serious-computer-security-hole/" rel="bookmark">Microsoft Warns of Serious Computer Security Hole</a></li><li><a href="http://www.dijexi.com/2009/07/best-free-utilities-software/" rel="bookmark">Best Free Utilities Software</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fwhat-is-the-best-web-content-management-software%2F&amp;linkname=What%20Is%20The%20Best%20Web%20Content%20Management%20Software"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Tips: 5 Good Reasons To Buy A Premium Theme</title>
		<link>http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/</link>
		<comments>http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 08:28:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[best premium Wordpress themes]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[WordPress tips]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/</guid>
		<description><![CDATA[The WordPress blogging platform is the #1 choice of many bloggers and online entrepreneurs Image via CrunchBase WordPress is free, which is part of it&#8217;s appeal, as are many of the enhancements that can be installed to change the look and function of WordPress, including WordPress themes. However, although there are hundreds of free WordPress [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>The <a class="zem_slink" title="WordPress" href="http://wordpress.org/" rel="homepage">WordPress</a> <a class="zem_slink" title="Blog" href="http://en.wikipedia.org/wiki/Blog" rel="wikipedia">blogging</a> platform is the #1 choice of many bloggers and online entrepreneurs     </p>
<div style="margin: 1em; width: 94px; display: block; float: right; height: 114px" class="zemanta-img" jquery1254824933984="3233"><a href="http://www.crunchbase.com/product/wordpress"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Image representing WordPress as depicted in Cr..." src="http://www.crunchbase.com/assets/images/resized/0001/6548/16548v2-max-450x450.png" width="81" height="78" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://www.crunchbase.com/">CrunchBase</a></p>
</p></div>
<p>WordPress is free, which is part of it&#8217;s appeal, as are many of the enhancements that can be installed to change the look and function of WordPress, including WordPress themes.    </p>
<p>However, although there are hundreds of free WordPress themes that you can download and use quite easily, sometimes it&#8217;s wise to invest in a premium theme instead. Why? Here are 5 reasons:     </p>
<p>1. Customization     </p>
<p>The best premium themes are far more customizable than the best free themes. If you want the most flexibility and options without having to learn <a class="zem_slink" title="HTML" href="http://en.wikipedia.org/wiki/HTML" rel="wikipedia">HTML</a> backwards and forwards, a good premium theme is definitely your best bet. </p>
<p> <span id="more-1280"></span><!--more-->
<p>2. Support     </p>
<p>It&#8217;s common for the developers of free themes to offer very limited support. And sometimes they offer no support at all. The developers of the best premium themes have more incentive to offer support and will usually have both detailed instructions that are updated frequently and an active user forum. Even the best themes can have technical <a class="zem_slink" title="Glitch" href="http://en.wikipedia.org/wiki/Glitch" rel="wikipedia">glitches</a> from time to time, so having good support is manditory when using any WordPress theme.     </p>
<p>3. Updates     </p>
<p>There is also less incentive for developers of free themes to fix bugs and update their theme when WordPress goes through one of it&#8217;s many upgrades. Sometimes they&#8217;ll stop offering the theme altogether. Purchasing a good premium theme will usually give you a lifetime of bug fixes and updates so any issues with be corrected in a timely way.     </p>
<p>4. Quality     </p>
<p>There are very few free themes that come close to the quality of the best premium themes. Everything from design elements to <a class="zem_slink" title="Search engine optimization" href="http://en.wikipedia.org/wiki/Search_engine_optimization" rel="wikipedia">search engine optimization</a> is covered by a good premium theme.     </p>
<p>5. No unwanted <a class="zem_slink" title="Adware" href="http://en.wikipedia.org/wiki/Adware" rel="wikipedia">adware</a>     </p>
<p>Free themes sometimes contain hidden code that inserts ads or other things that benefit the theme&#8217;s creator instead of you. The best premium themes do not have adware and often you can purchase a license to remove the companies&#8217; logo, etc. so you can &#8216;brand&#8217; your site and your client&#8217;s sites as your own.     </p>
<p>While there are good free themes available and honorable developers, the 5 advantages of using a good premium theme should be taken into consideration. If you want to create a site that will hold up well over time and give you the most options, the best premium themes are your best bet by far. </p>
</p>
<hr />Lillea Woodlyns helps people master WordPress quickly. For more free <a href="http://www.speedonlinewealth.com/blog/better-business-blogs-best-wordpress-theme/">WordPress tips</a> and information about the best WordPress themes, visit: http://www.speedonlinewealth.com/blog/better-business-blogs-best-wordpress-theme/  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66990">http://www.submityourarticle.com/a.php?a=66990</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6f4c756f-2ebd-44a5-a2b2-602d086f5076" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/WordPress+tips" rel="tag">WordPress tips</a>,<a href="http://technorati.com/tags/WordPress+themes" rel="tag">WordPress themes</a>,<a href="http://technorati.com/tags/best+premium+Wordpress+themes" rel="tag">best premium WordPress themes</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.bloggingot.com/blogging-platforms/wordpress/frugal-theme-review/">Frugal Theme Review</a> (bloggingot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://globelister.com/2009/09/is-your-blog-mobile/">Is your blog mobile?</a> (globelister.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.bloggingot.com/stuff/blogging-seo-101-get-started-with-seo-part-i/">Blogging SEO 101: Get Started With SEO &#8211; Part I</a> (bloggingot.com) </li>
<li class="zemanta-article-ul-li"><a href="http://cepoko.com/this-site-uses-keywordluv/">This site uses Keywordluv</a> (cepoko.com) </li>
<li class="zemanta-article-ul-li"><a href="http://mcbuzz.wordpress.com/2009/10/02/changing-permalinks-categories-retroactively-wordpress/">Changing Permalinks and Categories Retroactively (on a WordPress site with lots of posts)</a> (mcbuzz.wordpress.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.davidrisley.com/2009/09/24/blogging-technology/">Overcoming The Technology Hurdle To Blogging</a> (davidrisley.com)</li>
</ul></div>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/947d7fee-4fa1-42af-a3e1-32987ccd0541/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=947d7fee-4fa1-42af-a3e1-32987ccd0541" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/07/list-of-free-downloadable-wordpress-themes/" rel="bookmark">List of Free Downloadable WordPress Themes</a></li><li><a href="http://www.dijexi.com/2009/07/how-to-put-google-adsense-link-unit-on-a-wordpress-theme-header/" rel="bookmark">How To Put Google AdSense Link Unit on a WordPress Theme Header</a></li><li><a href="http://www.dijexi.com/2009/07/best-wordpress-plugin-for-facebook/" rel="bookmark">Best WordPress Plugin for Facebook</a></li><li><a href="http://www.dijexi.com/2009/08/how-to-setup-google-adsense-for-feed-in-wordpress/" rel="bookmark">How To Setup Google AdSense for Feed in WordPress</a></li><li><a href="http://www.dijexi.com/2009/07/setup-google-adsense-for-search-in-wordpress/" rel="bookmark">Setup Google AdSense for Search in WordPress</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fwordpress-tips-5-good-reasons-to-buy-a-premium-theme%2F&amp;linkname=WordPress%20Tips%3A%205%20Good%20Reasons%20To%20Buy%20A%20Premium%20Theme"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/wordpress-tips-5-good-reasons-to-buy-a-premium-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Create Your Own Automated Income System</title>
		<link>http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/</link>
		<comments>http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 22:49:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[automated income system]]></category>
		<category><![CDATA[internet business]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/</guid>
		<description><![CDATA[Being able to do it even when you are not working is part of the fun of doing it. Some people would refer to that as a dream job! Image by Getty Images via Daylife Let&#8217;s take a closer look at what is required to create an automated income system that pays you even when [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Being able to do it even when you are not working is part of the fun of doing it. Some people would refer to that as a dream job!   </p>
<div style="margin: 1em; width: 96px; display: block; float: right" class="zemanta-img" jquery1254783008015="1375"><a href="http://www.daylife.com/image/0cXIcjk5xA49p?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=0cXIcjk5xA49p&amp;utm_campaign=z1"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="NOT FOR MARKETING OR ADVERTISING CAMPAIGNS) In..." src="http://cache.daylife.com/imageserve/0cXIcjk5xA49p/86x150.jpg" width="86" height="150" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.daylife.com/source/Getty_Images">Getty Images</a> via <a href="http://www.daylife.com/">Daylife</a></p>
</p></div>
<p> Let&#8217;s take a closer look at what is required to create an automated income system that pays you even when you are not working!   </p>
<p>1. <a class="zem_slink" title="Advertising" href="http://en.wikipedia.org/wiki/Advertising" rel="wikipedia">Advertising</a> that runs continually. You will need to market your program or product online when you are first getting your system set up.   </p>
<p>To do this you will need to combine free advertising with paid advertising. There are numerous ways you can go about doing this.   </p>
<p><span id="more-1278"></span>You will want to have a <a class="zem_slink" title="Pay per click" href="http://en.wikipedia.org/wiki/Pay_per_click" rel="wikipedia">pay per click</a> <a class="zem_slink" title="Advertising campaign" href="http://en.wikipedia.org/wiki/Advertising_campaign" rel="wikipedia">advertising campaign</a> in place that is constantly bringing in leads or visitors. You will also want to develop some long-term traffic by working at getting backlinks to your <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a>.   </p>
<p>One of the top ways to do this is to outsource your article <a class="zem_slink" title="Marketing" href="http://en.wikipedia.org/wiki/Marketing" rel="wikipedia">marketing</a> efforts. And then use a submission service to maximize your article submissions to the top directories.   </p>
<p>2. A splash page to capture contact information of your traffic. By promoting a <a class="zem_slink" title="Landing page" href="http://en.wikipedia.org/wiki/Landing_page" rel="wikipedia">landing page</a> your visitor can fill out their name and <a class="zem_slink" title="E-mail address" href="http://en.wikipedia.org/wiki/E-mail_address" rel="wikipedia">email address</a> so you can follow up with them in the future.   </p>
<p>One of the most important parts of creating an automated income system is building a large <a class="zem_slink" title="Electronic mailing list" href="http://en.wikipedia.org/wiki/Electronic_mailing_list" rel="wikipedia">email list</a>.   </p>
<p>3. Use a quality auto responder to follow up automatically. There are many quality autoresponders online but of the ones that stand out are Aweber and GetResponse.   </p>
<p>It should be programmed with email messages that go out to your subscribers over a period of time. By setting these up in advance you can let the <a class="zem_slink" title="Autoresponder" href="http://en.wikipedia.org/wiki/Autoresponder" rel="wikipedia">autoresponder</a> do the hard work for you.   </p>
<p>Following up with your subscribers is one way to generate new <a class="zem_slink" title="Sales" href="http://en.wikipedia.org/wiki/Sales" rel="wikipedia">sales</a> on a continuing basis because people will respond at different times.   </p>
<p>4. Sell residual income products. Getting paid in the future for work you are doing now is one way to create a walk away income.   </p>
<p>Marketing business opportunities such as a network marketing business is one way to develop a residual income. Selling memberships that pay you in the future for sales you make right now is another way to create a residual income.   </p>
<p>These are all elements of creating your own automated income system. By combining advertising, a landing page, a quality auto responder, and residual income products, you will make money even when you are not working.
</p>
<hr />Suzanne Morrison helps people make money online with their own <a href="http://%20http//www.homebiz-direct.com/plugin-profit-site-info.html">Plug-in Profit Site</a> website website. She offers <a href="http://www.pluginprofitsitetraining.com/">Plug-In Profit Site training</a> to help you start make money right away.  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=67970">http://www.submityourarticle.com/a.php?a=67970</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f361c846-0bf5-479b-85dc-6e6017d0e1be" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/automated+income+system" rel="tag">automated income system</a>,<a href="http://technorati.com/tags/internet+business" rel="tag">internet business</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/affiliate-marketing/clickbank-affiliate-marketing-strategies-and-tips/">Clickbank Affiliate Marketing Strategies And Tips</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/traffic-generation/adwords-pay-per-click/how-to-pick-the-right-product-to-promote-online/">How To Pick The Right Product To Promote Online</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/traffic-generation/adwords-pay-per-click/ppc-and-seo-working-together/">PPC and SEO Working Together</a> (ronmedlin.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/affiliate-marketing/affiliate-marketing-strategies-and-tips-clickbank/">Affiliate Marketing Strategies And Tips-Clickbank</a> (ronmedlin.com)</li>
</ul></div>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3c70729e-c3e0-4323-9af4-346762da12fb/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=3c70729e-c3e0-4323-9af4-346762da12fb" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/11/what-is-autoblogging-all-about/" rel="bookmark">What is Autoblogging All About?</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-choose-the-best-affiliate-programs-for-maximum-success/" rel="bookmark">How to Choose the Best Affiliate Programs For Maximum Success</a></li><li><a href="http://www.dijexi.com/2009/05/function-membuat-md5-di-c-sharp/" rel="bookmark">Function Membuat MD5 di C#</a></li><li><a href="http://www.dijexi.com/2009/08/codeigniter-tutorial-creating-accounting-application-part-3-er-diagram-and-creating-database/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 3 ER Diagram and Creating Database</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fhow-to-create-your-own-automated-income-system%2F&amp;linkname=How%20To%20Create%20Your%20Own%20Automated%20Income%20System"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Your Business Can Accept Credit Card Payments</title>
		<link>http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/</link>
		<comments>http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 22:48:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[ZenCart]]></category>
		<category><![CDATA[accepting credit cards]]></category>
		<category><![CDATA[accepting payment online]]></category>
		<category><![CDATA[business management]]></category>
		<category><![CDATA[online security]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/</guid>
		<description><![CDATA[Copyright © 2009 Melanie James Opening a Merchant Account The first step to be able to accept credit cards as payment is to apply for a merchant account. Banks and merchant account companies offer credit card payment systems for both small and large businesses. However, before you sign up for their service, make sure to [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Copyright © 2009 Melanie James    </p>
<p>Opening a Merchant Account     </p>
<p>The first step to be able to accept <a class="zem_slink" title="Credit card" href="http://en.wikipedia.org/wiki/Credit_card" rel="wikipedia">credit cards</a> as payment is to apply for a <a class="zem_slink" title="Merchant account" href="http://en.wikipedia.org/wiki/Merchant_account" rel="wikipedia" jquery1254782839203="1050">merchant account</a>. Banks and <a class="zem_slink" title="Merchant" href="http://en.wikipedia.org/wiki/Merchant" rel="wikipedia">merchant</a> account companies offer credit card payment systems for both small and large businesses. However, before you sign up for their service, make sure to research and check the exact terms and conditions of your chosen merchant account provider.     </p>
<div style="margin: 1em; width: 250px; display: block; float: right" class="zemanta-img" jquery1254782839203="2093"><a href="http://www.flickr.com/photos/34338244@N00/95854771"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Personalized credit card" src="http://farm1.static.flickr.com/42/95854771_51d42edd69_m.jpg" width="240" height="180" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/34338244@N00/95854771">tempo</a> via Flickr</p>
</p></div>
<p></p>
<p>When comparing merchant account service providers don&#8217;t forget to check the pricing. How much would each card <a class="zem_slink" title="Transaction cost" href="http://en.wikipedia.org/wiki/Transaction_cost" rel="wikipedia">transaction cost</a>? How much would the setup charge cost you? What kind of support does the company provide to their customers? What about the reputation and track record of the company? What do present clients have to say about their service? These are important questions to consider when choosing a merchant account company. </p>
<p>&#160;</p>
<p>&#160;</p>
<p> <span id="more-1277"></span>
<p>Does My Business Qualify?     </p>
<p>If you&#8217;re running a home based business or a small business, what are the requirements to get approved for a merchant account status? Of course, your business&#8217;s financial standing would be reviewed. Banks or merchant account companies would be interested to learn exactly how much you earn from your sales each month. If your business has a stable history of sales and income, you should have no problem getting approved for a merchant account.     </p>
<p>Another factor that would affect your lender&#8217;s decision would be the status of your business credit history. Have you already established a business credit? Usually, a business needs to be at least 2 years in operations to get approved for a merchant account. In 2 years, you should have already established a solid business credit history as well. Needless to say, if you have a problem with your business credit, it would be difficult to get an approval. To be sure, check your business credit report at least 6 months in advance and do the necessary steps to improve your rating before applying for a merchant account.     </p>
<p>On the other hand, having a good to excellent business credit history would surely win you a quick approval. If you can prove that your business has been running smoothly for a considerable period of time, and that you have a good business <a class="zem_slink" title="Partnership" href="http://en.wikipedia.org/wiki/Partnership" rel="wikipedia">partnership</a> with your suppliers, achieving a merchant status wouldn&#8217;t be difficult at all.     </p>
<p>Accepting Credit Card Payments     </p>
<p>Once approved, you&#8217;re now ready to accept credit card payments. See to it that you clearly understand how the processing of credit card payments work. Your merchant account provider should give you all the assistance and support you need to make sure that unnecessary problems would be avoided.     </p>
<p>As the owner, you should also be aware on how you can protect your business from the risk of <a class="zem_slink" title="Identity Theft" href="http://www.wikinvest.com/concept/Identity_Theft" rel="wikinvest">identity theft</a> and credit card fraud. Before accepting credit card payments, you should be ready to handle your incoming credit card <a class="zem_slink" title="Financial transaction" href="http://en.wikipedia.org/wiki/Financial_transaction" rel="wikipedia">transactions</a>. </p>
</p>
<hr />
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66346">http://www.submityourarticle.com/a.php?a=66346</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c15aecaf-c9c5-4e08-9220-9737d4fd2776" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/accepting+credit+cards" rel="tag">accepting credit cards</a>,<a href="http://technorati.com/tags/online+security" rel="tag">online security</a>,<a href="http://technorati.com/tags/business+management" rel="tag">business management</a>,<a href="http://technorati.com/tags/accepting+payment+online" rel="tag">accepting payment online</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.goodwithscott.com/2009/09/new-factors-that-may-be-used-to-cut-your-credit-line-in-the-information-age/">New Factors That May Be Used To Cut Your Credit Line In The Information Age</a> (goodwithscott.com) </li>
<li class="zemanta-article-ul-li"><a href="http://myventurepad.com/MVP/78363">Which Banks are Making SBA Loans?</a> (myventurepad.com) </li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/10/02/pf/saving/stimulus_jobs/index.htm&amp;a=8196632&amp;rid=3e15ed12-0fff-4073-be77-d914de9cb1f3&amp;e=1e1000aa13df3b69dfb5c6f8499bb244">Where to find stimulus jobs</a> (money.cnn.com) </li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//money.cnn.com/2009/08/28/pf/saving/protect_from_identity_theft/index.htm&amp;a=7262090&amp;rid=3e15ed12-0fff-4073-be77-d914de9cb1f3&amp;e=4d8662f5a4f824930edaa1fb7c81f326">Think ID theft can&#8217;t happen to you?</a> (money.cnn.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/3e15ed12-0fff-4073-be77-d914de9cb1f3/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=3e15ed12-0fff-4073-be77-d914de9cb1f3" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/04/bagaimana-cara-setup-paypal-modul-di-zen-cart-tm/" rel="bookmark">Bagaimana Cara Setup PayPal Modul di Zen Cart (tm)</a></li><li><a href="http://www.dijexi.com/2010/01/how-to-apply-for-a-merchant-account-when-residing-in-the-middle-east/" rel="bookmark">How to Apply for a Merchant Account When Residing in the Middle East</a></li><li><a href="http://www.dijexi.com/2009/05/zen-cart-mengganti-welcome-message/" rel="bookmark">Zen Cart: Mengganti Welcome Message</a></li><li><a href="http://www.dijexi.com/2012/01/ayo-membuat-mp3-player-sederhana-di-android/" rel="bookmark">Ayo Membuat MP3 Player Sederhana di Android</a></li><li><a href="http://www.dijexi.com/2009/09/yahoo-search-marketing-security-breach-seriously-check-your-account-now/" rel="bookmark">Yahoo Search Marketing Security Breach! Seriously-- Check Your Account NOW!</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fhow-your-business-can-accept-credit-card-payments%2F&amp;linkname=How%20Your%20Business%20Can%20Accept%20Credit%20Card%20Payments"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/how-your-business-can-accept-credit-card-payments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Secret Formula for 1st Page Search Ranking</title>
		<link>http://www.dijexi.com/2009/10/the-secret-formula-for-1st-page-search-ranking/</link>
		<comments>http://www.dijexi.com/2009/10/the-secret-formula-for-1st-page-search-ranking/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:42:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[google results]]></category>
		<category><![CDATA[keyword results]]></category>
		<category><![CDATA[search engine ranking]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/the-secret-formula-for-1st-page-search-ranking/</guid>
		<description><![CDATA[Among the most often asked questions that I ever get is &#34;Why isn&#8217;t my site showing up in searches?&#34; I&#8217;m going to give you a very simple formula. KEYWORD COMPETITION. Choose a keyword you know you can rank for. (Hint: it&#8217;s probably not the first one you think of). Here&#8217;s how to know if you [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Among the most often asked questions that I ever get is &quot;Why isn&#8217;t my site showing up in searches?&quot; I&#8217;m going to give you a very simple formula.    </p>
<p>KEYWORD COMPETITION. Choose a keyword you know you can rank for. (Hint: it&#8217;s probably not the first one you think of). Here&#8217;s how to know if you have a chance. Look at the top ten sites that rank for a given keyword and specifically for each site check the following indications to see if they are optimizing for that keyword. You can determine most of these by viewing the source code from your browser (view: source).     </p>
<p>1. Are the keywords in the URL? 2. Are the keywords in the Title? 3. Are the keywords in the Meta-tags (Description) 4. Are the keywords formatted with H1 header tags in the page     </p>
<p>If most of the sites are in fact optimizing for the keyword of choice, I&#8217;d recommend trying another keyword. If you get past this test, the next couple of things you should check are page rank for each of the top ten and back links to the page. You can see the PageRank by simply installing the Google Toolbar and enabling that feature. To see how many links are going to a site, you can enter this into a Google search: &quot;link: <a href="http://www.site.com" target="_blank">http://www.site.com</a>&quot; (obviously without the quotes and replacing the www.site.com with the site in question). You should also know that if you try variations like link:<a href="http://www.site.com" target="_blank">http://www.site.com</a> (no space) vs. link: <a href="http://www.site.com" target="_blank">http://www.site.com</a> vs. link: www.site.com, you may see different results. Anyway, keep track of these numbers. Do the same thing for your own site.     </p>
<p>WEBSITE PARITY &#8211; If your site is in the mix relative to Page Rank and back-links then it looks like you have a competitive chance and the stars are aligned for the keyword of choice. There doesn&#8217;t appear to be any obstacles preventing you from ranking on the first page of Google for that keyword. Here&#8217;s what you should do. </p>
<p>&#160;</p>
<p> <span id="more-1275"></span>
<p>1. Either build a new page on your site or optimize an existing page so that your page is a positive for the 4 parameters listed above. Put your keywords in the URL, the Title, the Description and in H1 Header tags. Write your content using your keyword and variations (plurals, singulars and even synonyms). Don&#8217;t overdo it, you&#8217;re writing for people, not robots.     </p>
<p>2. Write an article and get it published on various article directories (like ezine.com). But get on board. This is extremely important. Your article should be related to your keyword but doesn&#8217;t have to be specifically about it.     </p>
<p>3. At the bottom of your article, you create what is known as a resource box. Most people put their bio here. You will also place a hyperlink in the resource box using the keyword that you&#8217;re optimizing for and link to the page in your site that you are optimizing.     </p>
<p>That&#8217;s it! I have done this hundreds if not thousands of times for my sites and my clients and it just works. Whenever it doesn&#8217;t, typically your keywords are a little more competitive then you thought. It can be tough finding your sweet spot. Don&#8217;t give up though. You might just need to submit another article for the same keywords to give it a boost.     </p>
<p>This may sound complicated and might even look like too much work to bother with. What I&#8217;ve learned over the years is that websites don&#8217;t just work. It takes work. Hopefully this has removed some of the confusion. </p>
</p>
<p>
<hr />Want more hints? <a href="http://www.buildawebshop.com/using_keywords.html">Using Keywords</a> <a href="http://www.buildawebshop.com/ecommerce_market_analysis.html">Ecommerce Market Analysis</a>    </p>
<p>Source: <a href="http://www.submityourarticle.com">http://www.submityourarticle.com</a>    </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=69132">http://www.submityourarticle.com/a.php?a=69132</a> </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a7482fe0-3748-4ee9-9c43-da8b5aeecf65" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/google+results" rel="tag">google results</a>,<a href="http://technorati.com/tags/keyword+results" rel="tag">keyword results</a>,<a href="http://technorati.com/tags/search+engine+ranking" rel="tag">search engine ranking</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/10/google-does-not-use-the-keywords-meta-tags-in-web-ranking/" rel="bookmark">Google does not use the keywords meta tags in web ranking</a></li><li><a href="http://www.dijexi.com/2009/09/techniques-to-improve-your-google-search-rankings-today/" rel="bookmark">Techniques to improve your Google search rankings today</a></li><li><a href="http://www.dijexi.com/2009/07/setup-google-adsense-for-search-in-wordpress/" rel="bookmark">Setup Google AdSense for Search in WordPress</a></li><li><a href="http://www.dijexi.com/2009/10/white-hat-vs-black-hat-seo-techniques/" rel="bookmark">White Hat vs Black Hat SEO Techniques</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fthe-secret-formula-for-1st-page-search-ranking%2F&amp;linkname=The%20Secret%20Formula%20for%201st%20Page%20Search%20Ranking"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/the-secret-formula-for-1st-page-search-ranking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 Tried &amp; Tested Ways to get a Website working for you</title>
		<link>http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you-2/</link>
		<comments>http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you-2/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 09:47:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[business opportunity]]></category>
		<category><![CDATA[home business]]></category>
		<category><![CDATA[kleeneze]]></category>
		<category><![CDATA[legitimate work from home]]></category>
		<category><![CDATA[part time work]]></category>
		<category><![CDATA[part time work from home]]></category>
		<category><![CDATA[work at home]]></category>
		<category><![CDATA[work from home]]></category>
		<category><![CDATA[work from home jobs]]></category>
		<category><![CDATA[work from home opportunities]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you-2/</guid>
		<description><![CDATA[Copyright © 2009 Michael Ogden These are tips we have found useful in the 9 years we have been using a website. Image via Wikipedia 1.Choose a good name relevant to your business and make sure you keep it short. We live in UK so we started with .co.uk sites but it is useful to [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Copyright © 2009 Michael Ogden   </p>
<p>These are tips we have found useful in the 9 years we have been using a website.
<div style="margin: 1em; width: 204px; display: block; float: right; height: 156px" class="zemanta-img" jquery1254476867906="2463"><a href="http://commons.wikipedia.org/wiki/Image:For_Sale_-_Classifieds.jpg"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="&quot;FOR SALE&quot; - a classified ad in a ne..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/84/For_Sale_-_Classifieds.jpg/300px-For_Sale_-_Classifieds.jpg" width="212" height="141" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://commons.wikipedia.org/wiki/Image:For_Sale_-_Classifieds.jpg">Wikipedia</a></p>
</p></div>
<p>1.Choose a good name relevant to your business and make sure you keep it short. We live in <a class="zem_slink" title="United Kingdom" href="http://maps.google.com/maps?ll=51.5,-0.116666666667&amp;spn=10.0,10.0&amp;q=51.5,-0.116666666667 (United%20Kingdom)&amp;t=h" rel="geolocation">UK</a> so we started with .co.uk sites but it is useful to have the .com version as well. Preferably make the same as a well searched key phrase relevant to you business. We subsequently found that that domains that were very long or used hyphens were not so good.     </p>
<p>2. Brand your name and business by having your own name and address on the <a class="zem_slink" title="Landing page" href="http://en.wikipedia.org/wiki/Landing_page" rel="wikipedia">landing page</a>. Have your telephone number on the website because sometimes people would like to have a chat with you before committing themselves. </p>
<p>&#160;</p>
<p> <span id="more-1274"></span>
<p>3. Use an article submission service to get back links. There are also others such as free guest books around the internet, free <a class="zem_slink" title="Classified advertising" href="http://en.wikipedia.org/wiki/Classified_advertising" rel="wikipedia" jquery1254476867906="800">classified advertising</a>, other people&#8217;s websites who will take your link and placing ads through <a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> such as on Adsense.     </p>
<p>4. If you are new to the internet, always get a website done by a professional. Doing it yourself may save money but if the page takes minutes to load while the site tries to load those snazzy graphics you thought were cool, you have lost a customer who will never go back.     </p>
<p>5. Have a counter on your website and make sure it starts at 5,500. People hate to be first. It is like choosing a restaurant to eat at. People like frequenting restaurants that are used by others.     </p>
<p>6. Use Sky Blue as a background color. It appeals to people.     </p>
<p>7. Just one page and the application form at the bottom will capture more leads. Make it easy for people to contact you. Additional pages will help get you into the <a class="zem_slink" title="Web search engine" href="http://en.wikipedia.org/wiki/Web_search_engine" rel="wikipedia">search engines</a>.     </p>
<p>8. We have found that sound or music on a website which starts playing immediately the site loads is a big turn-off.     </p>
<p>9. To get people to your site, you can use <a class="zem_slink" title="Pay per click" href="http://en.wikipedia.org/wiki/Pay_per_click" rel="wikipedia">pay per click</a>, put the website on national print <a class="zem_slink" title="Advertising" href="http://en.wikipedia.org/wiki/Advertising" rel="wikipedia">advertising</a>, or put it on your cards and flyers and your car. This was the magic part. We actually got free leads once the initial website investment was paid for. This was not only a very low cost investment. It was one that paid for itself within two months. Whichever method you use, do alot of it. Traditional advertising is like using a sheep dog to drive the sheep into the pen.     </p>
<p>10. It took us 7 years to find the right Contact Manager. It is simply Magic. It has taken us 7 years to find the right one. Some will buy the first time but some of the highest achievers in a lot of businesses did not grasp the concept immediately. Some took up to 5 years. </p>
</p>
<hr />For free information contact Alison &amp; Michael Ogden 115 Countess Road <a class="zem_slink" title="Amesbury" href="http://maps.google.com/maps?ll=51.1667,-1.7833&amp;spn=0.1,0.1&amp;q=51.1667,-1.7833 (Amesbury)&amp;t=h" rel="geolocation">Amesbury</a> SP4 7AR Tel 01980 626498 If you like travelling and not having to ask your boss for yet another holiday, please give us call <a href="http://www.vastincome.com/">http://www.vastincome.com</a>   </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66342">http://www.submityourarticle.com/a.php?a=66342</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7689d6d9-69de-42b7-8c25-15ac7158cce4" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/kleeneze" rel="tag">kleeneze</a>,<a href="http://technorati.com/tags/work+at+home" rel="tag">work at home</a>,<a href="http://technorati.com/tags/home+business" rel="tag">home business</a>,<a href="http://technorati.com/tags/work+from+home" rel="tag">work from home</a>,<a href="http://technorati.com/tags/work+from+home+jobs" rel="tag">work from home jobs</a>,<a href="http://technorati.com/tags/legitimate+work+from+home" rel="tag">legitimate work from home</a>,<a href="http://technorati.com/tags/part+time+work+from+home" rel="tag">part time work from home</a>,<a href="http://technorati.com/tags/work+from+home+opportunities" rel="tag">work from home opportunities</a>,<a href="http://technorati.com/tags/business+opportunity" rel="tag">business opportunity</a></div>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/traffic-generation/adwords-pay-per-click/ppc-and-seo-working-together/">PPC and SEO Working Together</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/affiliate-marketing/beginners-guide-to-make-money-with-affiliate-marketing/">Beginners Guide to Make Money with Affiliate Marketing</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/affiliate-marketing/clickbank-affiliate-marketing-strategies-and-tips/">Clickbank Affiliate Marketing Strategies And Tips</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.wealthyways4you.com/online-business/how-to-dominate-pay-per-click-2">How to Dominate Pay Per Click</a> (wealthyways4you.com) </li>
<li class="zemanta-article-ul-li"><a href="http://web-workathome.com/pay-click-tips-1st-timers/">Pay Per Click Tips for 1st Timers</a> (web-workathome.com)</li>
</ul></div>
</p>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/03400d0d-77c6-4862-8bab-41cff673210d/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=03400d0d-77c6-4862-8bab-41cff673210d" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2009/09/is-it-still-possible-to-make-money-online/" rel="bookmark">Is it still possible to make money online?</a></li><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-monetize-internet-traffic/" rel="bookmark">How to Monetize Internet Traffic</a></li><li><a href="http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you/" rel="bookmark">10 Tried &amp; Tested Ways to get a Website working for you</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2F10-tried-tested-ways-to-get-a-website-working-for-you-2%2F&amp;linkname=10%20Tried%20%26amp%3B%20Tested%20Ways%20to%20get%20a%20Website%20working%20for%20you"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Optimise Your Website for Article Marketing</title>
		<link>http://www.dijexi.com/2009/10/how-to-optimise-your-website-for-article-marketing/</link>
		<comments>http://www.dijexi.com/2009/10/how-to-optimise-your-website-for-article-marketing/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 09:44:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[executive assistant]]></category>
		<category><![CDATA[executive assistants]]></category>
		<category><![CDATA[online business]]></category>
		<category><![CDATA[virtual assistant]]></category>
		<category><![CDATA[virtual assistants]]></category>
		<category><![CDATA[website development]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/how-to-optimise-your-website-for-article-marketing/</guid>
		<description><![CDATA[Article marketing has long been viewed as one of the best strategies for online business. This initiative can help to build reputation, as well as providing hyper-links to your site for the article readers, who may well represent partially qualified leads. The Internet thrives on the presentation of quality information and well written articles can [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Article marketing has long been viewed as one of the best strategies for online business. This initiative can help to build reputation, as well as providing hyper-links to your site for the article readers, who may well represent partially qualified leads. The <a class="zem_slink" title="Internet" href="http://en.wikipedia.org/wiki/Internet" rel="wikipedia">Internet</a> thrives on the presentation of quality information and well written articles can be your organisation&#8217;s key contribution. The major <a class="zem_slink" title="Web search engine" href="http://en.wikipedia.org/wiki/Web_search_engine" rel="wikipedia">search engines</a> value good articles highly, and it&#8217;s essential that you compose focused and optimised material for your project.   </p>
<div style="margin: 1em; width: 160px; display: block; float: right" class="zemanta-img" jquery1254476017046="24349"><a href="http://www.daylife.com/image/00G5bkT3D71bM?utm_source=zemanta&amp;utm_medium=p&amp;utm_content=00G5bkT3D71bM&amp;utm_campaign=z1"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="MOUTAIN VIEW, CA - MAY 4:  Employees of Google..." src="http://cache.daylife.com/imageserve/00G5bkT3D71bM/150x100.jpg" width="150" height="100" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.daylife.com/source/Getty_Images">Getty Images</a> via <a href="http://www.daylife.com/">Daylife</a></p>
</p></div>
<p>Once you have compiled your comprehensive list of appropriate keywords for your niche, you should prepare articles accordingly. Write very informative pieces which include your keywords and make sure that they are distributed to relevant and powerful article directories and other repositories around the web. Anchor text-based hyper-links within the article resource boxes should point back to the landing pages, as specified, on your website.    </p>
<p></p>
<p> <span id="more-1273"></span>
<p>You should remember that you need to focus on your website development, as well as your article composition and distribution, as this is equally important within the overall picture. Your website must be adequately optimised to enable you to get the most out of any article marketing campaign, and to ensure this you should concentrate on several areas:    </p>
<p>1. Understand that the primary reason why people visit your page is to seek information. You should not spend too much time on fancy presentation, complex graphics and flash animation, if it detracts from the overall message.     </p>
<p>2. The layout of your site must be easy to understand and navigate. Visitors must be able to progress from point to point or page to page without any confusion and there should be a logical progression when it comes to presentation of information.     </p>
<p>3. Ideally, you should present a separate page for each keyword that you focus on during your article marketing campaign. In this way, the search engines will match the keyword contained in your article&#8217;s anchor link with the keyword optimised on each page.     </p>
<p>4. Always make sure that most of the content on the web page is directly related to the content of the article. Keep in mind that the reader of the article is being encouraged to check out this site through the actual content of the article itself. He or she should be able to continue this process of discovery, which may be leading them further into your sales funnel!     </p>
<p>5. To make sure that the search engines recognize the <a class="zem_slink" title="Landing page" href="http://en.wikipedia.org/wiki/Landing_page" rel="wikipedia">landing page</a> you have specified as relevant, you should make sure that you:     </p>
<p>* Put the exact keywords in the title of your page, as well as in the description.     </p>
<p>* Repeat the keywords in the body of the content on the page. It is suggested that you do this to no more than a density of 1%, ie 5 times within 500 words of content, so that it appears natural.     </p>
<p>* The H1 tag is very important and the keywords should appear here too.     </p>
<p>* Specify the keyword and related keywords (sometimes known as secondary keywords) within your <a class="zem_slink" title="Metadata" href="http://en.wikipedia.org/wiki/Metadata" rel="wikipedia">meta-data</a> keywords tag.     </p>
<p>6. There is increasing evidence that <a class="zem_slink" title="Google" href="http://google.com/" rel="homepage">Google</a> is placing a lot of emphasis on synonism and <a class="zem_slink" title="Latent semantic analysis" href="http://en.wikipedia.org/wiki/Latent_semantic_analysis" rel="wikipedia">latent semantic indexing</a>. This means that they will be looking for the existence of certain words and phrases within your content, relating back to their large databases of information, so they can accurately judge whether your content is indeed relevant to your primary keywords.     </p>
<p>As you prepare for your article marketing campaign, there&#8217;s a great deal to focus your attention on. Make the most of each article that you compose and distribute by ensuring that every <a class="zem_slink" title="HTML element" href="http://en.wikipedia.org/wiki/HTML_element" rel="wikipedia">element</a> of your campaign is optimised. To ensure that you don&#8217;t miss any of these essential steps, give some thought to taking on a Virtual Assistant to make the most of your online business development. </p>
</p>
<hr />Michelle Dale is CEO of Virtual Miss Friday, an adept and highly-proficient <a href="http://www.virtualmissfriday.com/">Virtual Assistant</a> Service which works closely with enterprising people who really want to succeed in their chosen field. If you&#8217;d like to learn more about online business building success strategies that are tailored to your needs, Contact VMF Today at=&gt; <a href="http://www.virtualmissfriday.com/">http://www.virtualmissfriday.com</a>  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=67588">http://www.submityourarticle.com/a.php?a=67588</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c40a2240-29ae-4856-b248-b36b2c3ed7c4" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/virtual+assistant" rel="tag">virtual assistant</a>,<a href="http://technorati.com/tags/online+business" rel="tag">online business</a>,<a href="http://technorati.com/tags/website+development" rel="tag">website development</a>,<a href="http://technorati.com/tags/virtual+assistants" rel="tag">virtual assistants</a>,<a href="http://technorati.com/tags/executive+assistant" rel="tag">executive assistant</a>,<a href="http://technorati.com/tags/executive+assistants" rel="tag">executive assistants</a>,<a href="http://technorati.com/tags/entrepreneur" rel="tag">entrepreneur</a></div>
</p>
</p>
</p>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/84bda9e7-8a43-463d-8338-8d322f4dad11/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=84bda9e7-8a43-463d-8338-8d322f4dad11" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2010/01/5-strategies-to-use-to-get-free-targeted-website-traffic/" rel="bookmark">5 Strategies To Use To Get Free Targeted Website Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/tips-for-using-the-rite-keywords-for-marketing-your-website/" rel="bookmark">Tips for using the rite keywords for marketing your website</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you/" rel="bookmark">10 Tried &amp; Tested Ways to get a Website working for you</a></li><li><a href="http://www.dijexi.com/2009/09/how-to-choose-the-best-affiliate-programs-for-maximum-success/" rel="bookmark">How to Choose the Best Affiliate Programs For Maximum Success</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fhow-to-optimise-your-website-for-article-marketing%2F&amp;linkname=How%20to%20Optimise%20Your%20Website%20for%20Article%20Marketing"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/how-to-optimise-your-website-for-article-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Hosting Provider: Choose One to Suit your Requirement</title>
		<link>http://www.dijexi.com/2009/10/web-hosting-provider-choose-one-to-suit-your-requirement/</link>
		<comments>http://www.dijexi.com/2009/10/web-hosting-provider-choose-one-to-suit-your-requirement/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 09:32:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Top web hosting companies]]></category>
		<category><![CDATA[Top web hosting company]]></category>
		<category><![CDATA[Top web hosting provider]]></category>
		<category><![CDATA[Top web hosting providers]]></category>
		<category><![CDATA[Top web hosting service]]></category>
		<category><![CDATA[Top web hosting services]]></category>
		<category><![CDATA[Top web hosting site]]></category>
		<category><![CDATA[Top web hosting sites]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/web-hosting-provider-choose-one-to-suit-your-requirement/</guid>
		<description><![CDATA[Had enough on traditional approaches for your business advertisement and commercials? It doesn&#8217;t matter if you have a small or big business? Perhaps it&#8217;s about time you consider revolving? Get an updated approach that will feed you with quality performance and positive feedbacks. Find a best way that will settle you in no regret at [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Had enough on traditional approaches for your business advertisement and commercials? It doesn&#8217;t matter if you have a small or big business? Perhaps it&#8217;s about time you consider revolving? Get an updated approach that will feed you with quality performance and positive feedbacks. Find a best way that will settle you in no regret at the end of the day. Here&#8217;s a tip that this article can share &#8212; check web hosting sites and use it for your product introduction. It&#8217;s a best way of inducing your products&#8217; advantages.    </p>
<div style="margin: 1em; width: 227px; display: block; float: right; height: 194px" class="zemanta-img" jquery1254476017046="3149"><a href="http://commons.wikipedia.org/wiki/Image:Paris_servers_DSC00190.jpg"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="An example of &quot;rack mounted&quot; servers." src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Paris_servers_DSC00190.jpg/300px-Paris_servers_DSC00190.jpg" width="221" height="166" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://commons.wikipedia.org/wiki/Image:Paris_servers_DSC00190.jpg">Wikipedia</a></p>
</p></div>
<p>Top web hosting company is propagating its excellence towards web hosting. For so many reasons, a lot of people are looking for quality &#8211; service &#8211; web hosting &#8211; companies. Top <a class="zem_slink" title="Web hosting service" href="http://en.wikipedia.org/wiki/Web_hosting_service" rel="wikipedia">web hosting service</a> provides opportunity for introducing products and services of different businesses. Either small or big businesses &#8211; these web hosting sites guarantee worldwide introduction. </p>
<p>&#160;</p>
<p> <span id="more-1272"></span>
<p></p>
<p> <!--more-->
<p>Check on the following web hosting companies. Remember that a good web construction relies deeply on the capability of your host to provide the sincerest features and services so that your goal is being achieved. Review and locate for your best tool. This could be a key to your success.     </p>
<p><strong>BlueHost</strong> has been exciting for so many years now. Within these years of operation, BlueHost has established a name on web hosting. It has generated many records of satisfied customers. One major reason for this is its excellent service and features. Some of its features are shown as follow: 2500 email accounts, 10GB disk space, bandwidth consisting 250GB per month, Enabled <a class="zem_slink" title="E-Commerce" href="http://www.wikinvest.com/concept/E-Commerce" rel="wikinvest">E-Commerce</a>, Host a maximum of 6 domains, <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a> holder for free, and free <a class="zem_slink" title="Domain name" href="http://en.wikipedia.org/wiki/Domain_name" rel="wikipedia">domain name</a> (for a particular condition).     </p>
<p><strong>Hostgator</strong> is another top web hosting provider that ventures through great deals and services. It is anybody&#8217;s tool. Even beginners can undoubtedly use this as an option since variety of web hosting plan has been given. Its web hosting plan includes the following features: unlimited email accounts, an enabled E-Commerce, Disk space (5GB), Bandwidth per month (75GB), Free Setup, Host unlimited domains, and a free website builder. It also provide a 24/7 customer support to make sure that customers are given the appropriate assistance. You might be interested with Midphase. It offers affordable costing at excellent service, so anybody can get it. Many customers have attested its reliability. Service and features are highly competing &#8212; Disk space (5GB), unlimited email accounts, enabled E-Commerce, website builder for free, and a 24/7 customer service.     </p>
<p><strong>Lunarpages</strong> is part of this battle. When you ask for the best, this should fall into choices. Many of its customers have ended up satisfied and happy because of its competitive service and features. Designs and technology were made in high class. It has 5GB of disk space. Total bandwidth per month reaches to 400GB. It hosts a maximum of 2 domains. Other than these are some more services that include the following: Enabled E-Commerce, unlimited email accounts, free website builder, and a 24/7 customer service.     </p>
<p>Other companies dealing top web hosting service are <strong>HostExcellence</strong>, <strong><a class="zem_slink" title="Yahoo!" href="http://www.yahoo.com/" rel="homepage">Yahoo</a></strong>, <strong>1and1</strong>, <strong><a class="zem_slink" title="GoDaddy" href="http://www.godaddy.com/" rel="homepage">GoDaddy</a></strong>, <strong>inmotion</strong> hosting, <strong>justhost</strong>, and <strong>hostclear</strong>.     </p>
<p>Well? Have you chosen your tool? It is important that you point out first your requirement so that you can come up with the most suitable web host site. There could be several considerations in choosing for web host provider, so you better settle those now. </p>
</p>
<hr />Stacey Zimmerman is the author of many health, fitness, business and marketing related articles, and runs numerous websites on nutrition, fitness, marketing, business and many other subjects. If you are looking for ideas on selecting a web host for your site, check his site on <a href="http://webhosting.top10reviews.info/">top web hosting providers</a>. Also, please check out his blog on <a href="http://best-top-10-web-hosting.com/">best web hosting services</a>.  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66380">http://www.submityourarticle.com/a.php?a=66380</a>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:cdd21a2a-8365-406a-944c-393f8e385d2d" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Top+web+hosting+companies" rel="tag">Top web hosting companies</a>,<a href="http://technorati.com/tags/Top+web+hosting+company" rel="tag">Top web hosting company</a>,<a href="http://technorati.com/tags/Top+web+hosting+sites" rel="tag">Top web hosting sites</a>,<a href="http://technorati.com/tags/Top+web+hosting+site" rel="tag">Top web hosting site</a>,<a href="http://technorati.com/tags/Top+web+hosting+services" rel="tag">Top web hosting services</a>,<a href="http://technorati.com/tags/Top+web+hosting+service" rel="tag">Top web hosting service</a>,<a href="http://technorati.com/tags/Top+web+hosting+providers" rel="tag">Top web hosting providers</a>,<a href="http://technorati.com/tags/Top+web+hosting+provider" rel="tag">Top web hosting provider</a></div>
</p>
</p>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.ronmedlin.com/traffic-generation/seo-google-marketing/domain-names-steps-to-choose-and-register-your-own/">Domain Names, Steps To Choose And Register Your Own</a> (ronmedlin.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.wealthyways4you.com/online-business/choosing-cheap-web-hosting">Choosing Cheap Web Hosting</a> (wealthyways4you.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.datacenterknowledge.com/archives/2009/09/22/report-yahoo-seeks-buyer-for-hosting-unit/">Report: Yahoo Seeks Buyer for Hosting Unit</a> (datacenterknowledge.com) </li>
<li class="zemanta-article-ul-li"><a href="http://marketing.blogtanker.com/3888/godaddy-pushing-twitter-small-business-reputation-management-2/">GoDaddy Pushing Twitter &amp; Small Business Reputation Management</a> (marketing.blogtanker.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.makeuseof.com/tag/top-7-easy-and-free-web-hosting-services/">Top 7 Easy and Free Web Hosting Services</a> (makeuseof.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.prweb.com/releases/2009/08/prweb2775494.htm">Web Hosting Firm Just Host hits 100,000 New Hosting Customers This Year!</a> (prweb.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.tipsblogger.com/2009/06/never-expiring-godaddy-couponspromo.html">Never Expiring GoDaddy Coupons/Promo Codes!</a> (tipsblogger.com)</li>
</ul></div>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/84bda9e7-8a43-463d-8338-8d322f4dad11/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=84bda9e7-8a43-463d-8338-8d322f4dad11" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/09/codeigniter-tutorial-creating-accounting-application-part-4-preparing-to-code/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 4 Preparing to Code</a></li><li><a href="http://www.dijexi.com/2009/07/list-of-free-downloadable-wordpress-themes/" rel="bookmark">List of Free Downloadable WordPress Themes</a></li><li><a href="http://www.dijexi.com/2009/07/ms-exchange-hosting-list/" rel="bookmark">MS Exchange Hosting List</a></li><li><a href="http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/" rel="bookmark">5 Tips To Create a Free Website</a></li><li><a href="http://www.dijexi.com/2010/08/creating-gps-tracker-application-on-j2me-phones/" rel="bookmark">Creating GPS Tracker Application on J2ME Phones</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fweb-hosting-provider-choose-one-to-suit-your-requirement%2F&amp;linkname=Web%20Hosting%20Provider%3A%20Choose%20One%20to%20Suit%20your%20Requirement"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/web-hosting-provider-choose-one-to-suit-your-requirement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google does not use the keywords meta tags in web ranking</title>
		<link>http://www.dijexi.com/2009/10/google-does-not-use-the-keywords-meta-tags-in-web-ranking/</link>
		<comments>http://www.dijexi.com/2009/10/google-does-not-use-the-keywords-meta-tags-in-web-ranking/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 22:40:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[google keywords meta tag]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/10/google-does-not-use-the-keywords-meta-tags-in-web-ranking/</guid>
		<description><![CDATA[Keywords meta tag has been very popular in search engine optimization world. It’s believed that search engines read this keyword to determine our site rank in their search results. Whether Google, as the biggest search engine currently, uses this keywords is debatable around search engine optimization experts. At least for Google&#8217;s web search results currently [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><p>Keywords meta tag has been very popular in search engine optimization world. It’s believed that search engines read this keyword to determine our site rank in their search results. Whether Google, as the biggest search engine currently, uses this keywords is debatable around search engine optimization experts.</p>
<p>At least for Google&#8217;s web search results currently (September 2009), the answer is no. Google doesn&#8217;t use the &quot;keywords&quot; meta tag in our web search ranking. This video explains more, or see the questions below.</p>
<p> <span id="more-1251"></span>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:53357c8b-5919-4e32-8c25-305d27c17a37:2372fc39-5334-45e7-8ea5-4b6a461a7a77" class="wlWriterEditableSmartContent"><embed src="http://www.youtube.com/v/jK7IPbnmvVU&amp;feature=player_embedded" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></div>
<p>You can read further information about this from <a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html" target="_blank">Official Google Webmaster Central Blog</a>.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f9090aac-2612-413d-8f07-2457c3536c90" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/google+keywords+meta+tag" rel="tag">google keywords meta tag</a>,<a href="http://technorati.com/tags/seo+basics" rel="tag">seo basics</a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/10/the-secret-formula-for-1st-page-search-ranking/" rel="bookmark">The Secret Formula for 1st Page Search Ranking</a></li><li><a href="http://www.dijexi.com/2009/09/techniques-to-improve-your-google-search-rankings-today/" rel="bookmark">Techniques to improve your Google search rankings today</a></li><li><a href="http://www.dijexi.com/2009/09/tips-for-using-the-rite-keywords-for-marketing-your-website/" rel="bookmark">Tips for using the rite keywords for marketing your website</a></li><li><a href="http://www.dijexi.com/2009/10/white-hat-vs-black-hat-seo-techniques/" rel="bookmark">White Hat vs Black Hat SEO Techniques</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-optimise-your-website-for-article-marketing/" rel="bookmark">How to Optimise Your Website for Article Marketing</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F10%2Fgoogle-does-not-use-the-keywords-meta-tags-in-web-ranking%2F&amp;linkname=Google%20does%20not%20use%20the%20keywords%20meta%20tags%20in%20web%20ranking"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/10/google-does-not-use-the-keywords-meta-tags-in-web-ranking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Tips To Create a Free Website</title>
		<link>http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/</link>
		<comments>http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 00:43:00 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Create a Free Website]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/</guid>
		<description><![CDATA[It Doesn&#8217;t Get Any Easier Than This Image by NMCIL ortiz domney via Flickr Do you hate the idea of having to pay some webmaster to create a website. Well there&#8217;s good news. These days you can create a free website in no time and it couldn&#8217;t be any easier. Some free website platforms provide [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><h2>It Doesn&#8217;t Get Any Easier Than This </h2>
<div style="margin: 1em; width: 250px; display: block; float: right" class="zemanta-img" jquery1253061800203="1734"><a href="http://www.flickr.com/photos/49503122659@N01/470591454"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Web Design" src="http://farm1.static.flickr.com/171/470591454_5efda8e8fe_m.jpg" width="240" height="202" /></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image by <a href="http://www.flickr.com/photos/49503122659@N01/470591454">NMCIL ortiz domney</a> via Flickr</p>
</p></div>
<p>Do you hate the idea of having to pay some webmaster to create a <a class="zem_slink" title="Website" href="http://en.wikipedia.org/wiki/Website" rel="wikipedia">website</a>. Well there&#8217;s good news. These days you can create a free website in no time and it couldn&#8217;t be any easier. Some free website platforms provide free website <a class="zem_slink" title="Web hosting service" href="http://en.wikipedia.org/wiki/Web_hosting_service" rel="wikipedia">hosting</a> and professionally designed website templates for you to choose from. </p>
<p>Easily choose the <a class="zem_slink" title="Web template" href="http://en.wikipedia.org/wiki/Web_template" rel="wikipedia">template</a> <a class="zem_slink" title="Design" href="http://en.wikipedia.org/wiki/Design" rel="wikipedia">design</a> that fits you best and then very soon you&#8217;ll be done. Typically these designs are gorgeous and you could stop right there, add some content and be done, or you might want to create your website entirely unique and personal by altering things around a tad. Colors are very easy to change. You can match your company colors or change it to any color you want. The choice is yours. And no programming or <a class="zem_slink" title="HTML" href="http://en.wikipedia.org/wiki/HTML" rel="wikipedia">HTML</a> skills are needed. </p>
<p> <span id="more-1239"></span><br />
<h2>Flexibility and Creativity </h2>
<p> Flexible with templates are just the beginning. You&#8217;ll also want to look for a platform that allows you to create a free website using a <a class="zem_slink" title="WYSIWYG" href="http://en.wikipedia.org/wiki/WYSIWYG" rel="wikipedia">WYSIWYG</a> editor. Say that 10 times fast. But what it stands for is &quot;What You See Is What You Get&quot;. It means that the webpage you are designing is going to look just the way it does when you design your content and put it onto your pages.   </p>
<p>You can be as creative as you want. Type or <a class="zem_slink" title="Cut, copy, and paste" href="http://en.wikipedia.org/wiki/Cut%2C_copy%2C_and_paste" rel="wikipedia">cut and paste</a>, and that would of course be for when you have either paid for professional copywriting or written your own content in a <a class="zem_slink" title="Microsoft Word" href="http://office.microsoft.com/word" rel="homepage">Word</a> file and need to get that text onto your website. You can be very creative with the easy to use and flexible free website <a class="zem_slink" title="Computer software" href="http://en.wikipedia.org/wiki/Computer_software" rel="wikipedia">software</a>.   </p>
<h2>Show Me the Money </h2>
<p> Another feature you&#8217;ll want to look for is the ability to monetize your site. What that means in layman&#8217;s terms is that you can make money from your free website by choosing to have relevant ads displayed on your site. Typically the money you earn will be split with the create a free website company you build your site with.   </p>
<h2>Wrapping it Up </h2>
<p>It almost sounds too good to be true, but it is absolutely true. You can really create a free website with incredible free software that&#8217;s available today.    </p>
<p>After you&#8217;ve made up your mind to create a free website it should be:     </p>
<p>1. Easy     <br />2. Creative     <br />3. Flexible     <br />4. Fun     <br />5. Have the ability to make you money     </p>
<p>When creating a free website it&#8217;s very easy because all you have to do is <a class="zem_slink" title="Point-and-click" href="http://en.wikipedia.org/wiki/Point-and-click" rel="wikipedia">point and click</a>. It allows creativity because you can take a template and completely customize it using a variety of options. Creating a free website is a lot of fun but can also make you a decent income if you have a business and want to make money online.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b16b1e3d-1f43-4647-8ed6-581b43967bb5" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Create+a+Free+Website" rel="tag">Create a Free Website</a></div>
</p>
<hr />Andi Beark started in internet search marketing one year ago. She writes part time, and works on building her knowledge in both website and search marketing. <a href="http://dm-2.com/">DM2</a> is an Epicenter platform that helps create content-rich websites quickly and easily. You can create a free website in minutes! Choose from a variety of templates, keywords, content and sitemaps. Check out everything you get to <a href="http://dm-2.com/features/">create a free website</a> with.  </p>
<p>Source: <a href="http://www.submityourarticle.com/">http://www.submityourarticle.com</a>  </p>
<p>Permalink: <a href="http://www.submityourarticle.com/a.php?a=66197">http://www.submityourarticle.com/a.php?a=66197</a>
</p>
</p>
</p>
</p>
</p>
<div class="zemanta-related">
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://lifehacker.com/5359332/customize-your-web-modifies-web-pages-to-your-liking">Customize Your Web Modifies Web Pages to Your Liking [Downloads]</a> (lifehacker.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.letblog.com/2009/08/website-builder-drag-and-drop-review.html">Website Builder Drag and Drop Review and link</a> (letblog.com) </li>
<li class="zemanta-article-ul-li"><a href="http://www.johnchow.com/managing-multiple-membership-sites-like-a-pro/">Managing Multiple Membership Sites Like a Pro</a> (johnchow.com)</li>
</ul></div>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/8f251a2e-edbc-4b26-95bc-e9c5cc07f9d5/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=8f251a2e-edbc-4b26-95bc-e9c5cc07f9d5" /></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/11/web-site-traffic-promotion-how-to-promote-your-web-site-to-get-free-traffic/" rel="bookmark">Web Site Traffic Promotion - How To Promote Your Web Site To Get Free Traffic</a></li><li><a href="http://www.dijexi.com/2009/09/tips-for-using-the-rite-keywords-for-marketing-your-website/" rel="bookmark">Tips for using the rite keywords for marketing your website</a></li><li><a href="http://www.dijexi.com/2009/10/how-to-create-your-own-automated-income-system/" rel="bookmark">How To Create Your Own Automated Income System</a></li><li><a href="http://www.dijexi.com/2010/01/driving-traffic-into-a-brand-new-website-within-24-hours/" rel="bookmark">Driving Traffic Into A Brand New Website Within 24 hours</a></li><li><a href="http://www.dijexi.com/2009/10/10-tried-tested-ways-to-get-a-website-working-for-you-2/" rel="bookmark">10 Tried &amp; Tested Ways to get a Website working for you</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F09%2F5-tips-to-create-a-free-website%2F&amp;linkname=5%20Tips%20To%20Create%20a%20Free%20Website"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/09/5-tips-to-create-a-free-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dasar-dasar HTML</title>
		<link>http://www.dijexi.com/2009/07/dasar-dasar-html/</link>
		<comments>http://www.dijexi.com/2009/07/dasar-dasar-html/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 23:25:40 +0000</pubDate>
		<dc:creator>akhmad daniel sembiring</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[css style]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.dijexi.com/2009/07/dasar-dasar-html/</guid>
		<description><![CDATA[Image via Wikipedia Semua dokumen dan aplikasi yang dapat berjalan di atas web browser umumnya memiliki format hypertext markup language (HTML). Karena itu, untuk bisa melalukan pemrograman aplikasi di atas web anda harus terlebih dahulu menguasai HTML. Walaupun sekarang telah banyak terdapat tool yang dapat anda gunakan untuk membuat halaman secara WYSIWYG seperti Frontpage, Dreamweaver, [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div style="margin: 1em; width: 310px; display: block; float: right" class="zemanta-img" jquery1246833230093="2381"><a href="http://en.wikipedia.org/wiki/Image:Netscape_7_En.PNG"><img style="border-bottom: medium none; border-left: medium none; display: block; border-top: medium none; border-right: medium none" alt="Netscape 7." src="http://upload.wikimedia.org/wikipedia/en/thumb/e/ee/Netscape_7_En.PNG/300px-Netscape_7_En.PNG" width="300" height="216"></a>
<p style="font-size: 0.8em" class="zemanta-img-attribution">Image via <a href="http://en.wikipedia.org/wiki/Image:Netscape_7_En.PNG">Wikipedia</a></p>
</div>
<p>Semua dokumen dan aplikasi yang dapat berjalan di atas <a class="zem_slink" title="Web browser" href="http://en.wikipedia.org/wiki/Web_browser" rel="wikipedia">web browser</a> umumnya memiliki format <i><a class="zem_slink" title="Hypertext" href="http://en.wikipedia.org/wiki/Hypertext" rel="wikipedia">hypertext</a> <a class="zem_slink" title="Markup language" href="http://en.wikipedia.org/wiki/Markup_language" rel="wikipedia">markup language</a></i> (<a class="zem_slink" title="HTML" href="http://en.wikipedia.org/wiki/HTML" rel="wikipedia">HTML</a>). Karena itu, untuk bisa melalukan pemrograman aplikasi di atas web anda harus terlebih dahulu menguasai HTML. Walaupun sekarang telah banyak terdapat tool yang dapat anda gunakan untuk membuat halaman secara <a class="zem_slink" title="WYSIWYG" href="http://en.wikipedia.org/wiki/WYSIWYG" rel="wikipedia">WYSIWYG</a> seperti Frontpage, <a class="zem_slink" title="Adobe Dreamweaver" href="http://www.adobe.com/products/dreamweaver" rel="homepage">Dreamweaver</a>, dll, namun tetap saja anda harus menguasai HTML untuk membuat aplikasi berbasis web.</p>
<p>Setelah mempelajari bagian ini anda diharapkan akan mampu:</p>
<ul>
<li>Menguasai dasar-dasar HTML.
<li>Mengenal dan mampu menggunakan tag-tag HTML dasar: H1, H2, dst, list, <a class="zem_slink" title="Ordered list" href="http://en.wikipedia.org/wiki/Ordered_list" rel="wikipedia">ordered list</a>, dan unordered list.
<li>Menguasai dan mengugnakan tabel HTML untuk menampilkan informasi statis dalam bentuk tabel.
<li>Melakukan pem-format-an paragraph pada dokumen HTML.
<li>Menentukan warna dokumen HTML.
<li>Menggunakan frame HTML.
<li>Melakukan pem-format-an font pada dokumen HTML
<li>Mengerti dan menggunakan form HTML untuk menerima input dari user.
<li>Mengerti <a class="zem_slink" title="Cascading Style Sheets" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" rel="wikipedia">CSS</a>
<li>Mengerti sekilas <a class="zem_slink" title="JavaScript" href="http://en.wikipedia.org/wiki/JavaScript" rel="wikipedia">JavaScript</a> </li>
</ul>
<p><span id="more-548"></span><br />
<h1>Pendahuluan</h1>
</p>
<p><a class="zem_slink" title="Hypertext Transfer Protocol" href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol" rel="wikipedia">HTTP</a> (<i>hypertext transfer procotol</i>) merupakan protokol yang digunakan untuk mentransfer data antar web <a class="zem_slink" title="Web server" href="http://en.wikipedia.org/wiki/Web_server" rel="wikipedia">server</a> ke web browser. Protokol ini mentransfer dokumen-dokumen web yang ditulis atau berformat HTML (<i>hypertext markup language</i>). Dikatakan <i>markup language </i>karena HTML berfungsi untuk ‘memperindah’ file text biasa untuk ditampilkan pada program web browser. Hal ini dilakukan dengan menambahkan tag-tag (perintah khusus) pada file text biasa tadi.</p>
<p>Tag HTML biasanya berupa tag-tag yang berpasang-pasangan dan ditandai dengan simbol &lt; dan &gt;. Pasangan atau ‘penutup perintah’ dari sebuah tag ditandai dengan tanda ‘/’. Misalnya pasangan dari tag &lt;contoh&gt; adalah &lt;/contoh &gt;.</p>
<h2>Struktur Dokumen HTML</h2>
<p>Setiap dokumen atau halaman HTML memiliki struktur atau susunan file sebagai berikut:</p>
<blockquote><p>&lt;HTML&gt; <br />&lt;HEAD&gt; <br />&lt;TITLE&gt; Judul yang akan muncul pada title bar web browser&lt;/TITLE&gt; <br />&lt;/HEAD&gt; <br />&lt;BODY&gt; <br />Text, gambar, atau apapun yang ingin anda tampilkan pada dokumen anda ada pada bagian ini. <br />&lt;/BODY&gt; <br />&lt;/HTML&gt;</p>
</blockquote>
<h3><a name="_Toc466783928">Latihan: Mengenal Struktur HTML</a></h3>
<p>Ketikkan baris-baris di atas dengan NOTEPAD pada sebuah file baru dengan nama LATIHAN1-1.HTML. Lalu simpan pada direktori C:\TEMP. Lalu jalankan browser anda dan buka file di atas melalui menu FILE-OPEN.</p>
<p>Hasilnya akan terlihat seperti pada gambar di bawah:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image002.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 1 Tampilan Latihan HTML 1" border="0" alt="Gambar 1 Tampilan Latihan HTML 1" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image002_thumb.jpg" width="244" height="157"></a></p>
<p>Gambar 1 Tampilan Latihan HTML 1</p>
<p>Seperti terlihat, struktur file HTML diawali dengan sebuah tag &lt;HTML&gt; dan ditutup dengan tag &lt;/HTML&gt;. Di dalam tag ini terdapat dua buah bagian besar yaitu yang diapit oleh tag &lt;HEAD&gt; … &lt;/HEAD&gt; dan tag &lt;BODY&gt; … &lt;/BODY&gt;.</p>
<p>Bagian yang diapit oleh tag HEAD merupakan header dari halaman HTML dan tidak ditampilkan pada browser. Bagian ini berisi tag-tag header seperti &lt;TITLE&gt; … &lt;/TITLE&gt; yang berfungsi untuk mengeluarkan judul pada title bar window web browser. Tag lain misalnya &lt;META&gt; dan tag-tag lainnya yang akan kita pelajari kemudian.</p>
<p>Bagian kedua, yang diapit oleh tag BODY merupakan bagian yang akan ditampilkan pada halaman web browser nantinya. Pada bagian ini anda akan menuliskan semua jenis informasi , berupa text dengan bermacam format maupun gambar, yang ingin anda sampaikan pada pengguna nantinya.</p>
<h2><a name="_Toc466783929">Tag Heading</a></h2>
<p>Tag pertama yang akan kita pelajari adalah tag heading yang berfungsi untuk memformat heading (judul dan sub judul) dari sebuah halaman web. Heading ini akan memperbesar ukuran huruf untuk setiap jenis heading. Ada tujuh buah heading yang dikenal di HTML yaitu:</p>
<p>Daftar Tag Heading<br />
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="84">
<p><b>Tag pembuka</b></p>
</td>
<td valign="top" width="78">
<p><b>Tag penutup</b></p>
</td>
<td valign="top" width="102">
<p><b>Nama</b></p>
</td>
<td valign="top" width="113">
<p><b>Fungsi</b></p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H1&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H1&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 1</p>
</td>
<td valign="top" width="113">
<p>Judul Besar</p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H2&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H2&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 2</p>
</td>
<td valign="top" width="113">
<p>Sub judul 1</p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H3&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H3&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 3</p>
</td>
<td valign="top" width="113">
<p>Sub judul 2</p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H4&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H4&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 4</p>
</td>
<td valign="top" width="113">
<p>Sub judul 3</p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H5&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H5&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 5</p>
</td>
<td valign="top" width="113">
<p>Sub judul 4</p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H6&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H6&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 6</p>
</td>
<td valign="top" width="113">
<p>Sub judul 5</p>
</td>
</tr>
<tr>
<td valign="top" width="84">
<p>&lt;H7&gt;</p>
</td>
<td valign="top" width="78">
<p>&lt;/H7&gt;</p>
</td>
<td valign="top" width="102">
<p>Heading 7</p>
</td>
<td valign="top" width="113">
<p>Sub judul 6</p>
</td>
</tr>
</tbody>
</table>
</p>
<h3><a name="_Toc466783930">Latihan: Mengenal Heading</a></h3>
<p>Ketikkan baris-baris berikut ini pada sebuah file baru, dan simpan dengan nama <br />LATIHAN1-2.HTML.</p>
<blockquote><p>&lt;HTML&gt; <br />&lt;HEAD&gt; <br />&lt;TITLE&gt; Latihan menggunakan tag heading&lt;/TITLE&gt; <br />&lt;/HEAD&gt; <br />&lt;BODY&gt; <br />&lt;H1&gt;Produk PT Maju Terus&lt;/H1&gt; </p>
</blockquote>
<blockquote><p>Berikut ini adalah produk yang terdapat oleh PT Maju Terus.</p>
<p>&lt;H2&gt;Komputer&lt;/H2&gt;</p>
<p>Pentium II, Pentium 200, Pentium 100, Pentium 75</p>
<p>&lt;H2&gt;Asesori &lt;/H2&gt;</p>
<p>Disket 1.44M, Cartridge 100 M Rp 100.000,</p>
<p>&lt;H2&gt;Printer&lt;/H2&gt;</p>
<p>HP Laserjet III Rp 2.000.000, HP Deskjet 500 Rp 1.500.000, HP Deskjet 600C Rp 1.900.000</p>
<p>&lt;/BODY&gt; <br />&lt;/HTML&gt;</p>
</blockquote>
<p>Jalankan browser anda dan buka file di atas. Perhatikan tampilan yang terlihat. Text yang diapit oleh tag &lt;H1&gt; dan &lt;/H1&gt; akan muncul dengan ukuran huruf yang lebih besar dan tebal dibandingkan dengan text normal. Text yang diapit oleh tag &lt;H1&gt; dan &lt;/H1&gt; akan muncul dengan ukuran huruf yang lebih besar dan tebal dibandingkan dengan text normal namun lebih kecil daripada text yang diapit oleh tag H1. Demikian seterusnya untuk tag-tag heading selanjutnya.</p>
<h2><a name="_Toc466783931">Tag List</a></h2>
<p>Tag &lt;LI&gt; digunakan untuk menampilkan informasi dalam bentuk daftar (list). Ada dua jenis daftar yang dikenal di HTML, yaitu daftar dalam format bullet (<i>bulleted list</i>) dan dalam bentuk nomor (<i>ordered list</i>). Untuk masing-masing jenis list ini diperlukan tambahan tag yang berbeda yaitu tag &lt;UL&gt; dan &lt;OL&gt;.</p>
<h3><a name="_Toc466783932">Latihan: Mengenal List</a></h3>
<p>Sebagai contoh, buka lagi file LATIHAN1-2.HTML dan simpan sebagai LATIHAN1-3.HTML. Lalu ketikkan baris-baris tambahan sehingga terlihat seperti berikut ini:</p>
<blockquote><p>&lt;HTML&gt; <br />&lt;HEAD&gt; <br />&lt;TITLE&gt; Latihan menggunakan tag heading&lt;/TITLE&gt; <br />&lt;/HEAD&gt; <br />&lt;BODY&gt; <br />&lt;H1&gt;Produk PT Maju Terus&lt;/H1&gt; </p>
</blockquote>
<p>Berikut ini adalah produk yang terdapat oleh PT Maju Terus.</p>
<blockquote><p>&lt;H2&gt;Komputer&lt;/H2&gt;</p>
<p>&lt;OL&gt;</p>
<p>&lt;LI&gt;Pentium II</p>
<p>&lt;LI&gt;Pentium 200 <br />&lt;LI&gt;Pentium 100, Pentium 75</p>
<p>&lt;/OL&gt;</p>
<p>&lt;H2&gt;Asesori &lt;/H2&gt;</p>
<p>&lt;OL&gt;</p>
<p>&lt;LI&gt;Disket 1.44M</p>
<p>&lt;LI&gt;Cartridge 100 M Rp 100.000</p>
<p>&lt;/OL&gt;</p>
<p>&lt;H2&gt;Printer&lt;/H2&gt;</p>
<p>&lt;UL&gt;</p>
<p>&lt;LI&gt;HP Laserjet III Rp 2.000.000</p>
<p>&lt;LI&gt;HP Deskjet 500 Rp 1.500.000</p>
<p>&lt;LI&gt;HP Deskjet 600C Rp 1.900.000</p>
<p>&lt;UL&gt;</p>
<p>&lt;/BODY&gt; <br />&lt;/HTML&gt;</p>
</blockquote>
<p>Lalu tampilkan pada browser, dan perhatikan tampilannya. Text yang diapit oleh tag &lt;OL&gt; … &lt;/OL&gt; akan ditampilkan dalam bentuk daftar yang teratur (nomor 1,2,3,…). Tag &lt;LI&gt; akan menyebabkan browser menampilkan tanda bullet. Namun jika berada diantara tag &lt;UL&gt;… &lt;/UL&gt; tag &lt;LI&gt; akan menyebabkan browser menampilkan nomor yang berurutan.</p>
<h2><a name="_Toc466783933">Tag gambar</a></h2>
<p>Anda dapat menampilkan gambar pada halaman HTML anda jika anda memiliki file gambarnya yang berformat GIF atau JPG. Untuk menampilkan gambar dapat digunakan tag IMG. Format tag ini agak berbeda dengan tag yang telah kita pelajari sebelumnya, yaitu:</p>
<blockquote><p>&lt;IMG SRC=namafilegambar&gt;</p>
</blockquote>
<p>Tag ini tidak memiliki tag penutup. Tag ini memiliki sesuatu didalamnya yang disebut dengan parameter. Parameter yang terlihat di atas dan yang harus disertakan untuk setiap pemanggilan tag IMG adalah parameter SRC. Parameter ini berfungsi untuk menentukan nama file gambar yang akan ditampilkan di browser. Nama file ini harus lengkap dengan path relatif terhadap halaman yang memanggilnya maupun absolut tempat dia berada pada web server.</p>
<h3><a name="_Toc466783934">Latihan: Menggunakan Tag Gambar</a></h3>
<p>Buka file LATIHAN1-3.HTML dan ketikkan baris-baris tambahan sehingga terlihat sebagai berikut:</p>
<blockquote><p><b>1. </b>&lt;HTML&gt;</p>
<p><b>2. </b>&lt;HEAD&gt;</p>
<p><b>3. </b>&lt;TITLE&gt; Latihan menggunakan tag heading&lt;/TITLE&gt;</p>
<p><b>4. </b>&lt;/HEAD&gt;</p>
<p><b>5. </b>&lt;BODY&gt;</p>
<p><b>6. </b>&lt;IMG SRC=logo.jpg&gt;</p>
<p><b>7. </b></p>
<p><b>8. </b>&lt;H1&gt;Produk PT Maju Terus&lt;/H1&gt; </p>
<p><b>9. </b>Berikut ini adalah produk yang terdapat pada PT Maju Terus.</p>
<p><b>10. </b></p>
<p><b>11. </b>&lt;H2&gt;Komputer&lt;/H2&gt;</p>
<p><b>12. </b>&lt;OL&gt;</p>
<p><b>13. </b>&lt;LI&gt;Pentium II</p>
<p><b>14. </b>&lt;LI&gt;Pentium 200</p>
<p><b>15. </b>&lt;LI&gt;Pentium 100, Pentium 75</p>
<p><b>16. </b>&lt;/OL&gt;</p>
<p><b>17. </b></p>
<p><b>18. </b>&lt;H2&gt;Asesori &lt;/H2&gt;</p>
<p><b>19. </b>&lt;OL&gt;</p>
<p><b>20. </b>&lt;LI&gt;Disket 1.44M</p>
<p><b>21. </b>&lt;LI&gt;Cartridge 100 M Rp 100.000</p>
<p><b>22. </b>&lt;/OL&gt;</p>
<p><b>23. </b></p>
<p><b>24. </b>&lt;H2&gt;Printer&lt;/H2&gt;</p>
<p><b>25. </b>&lt;UL&gt;</p>
<p><b>26. </b>&lt;LI&gt;HP Laserjet III Rp 2.000.000</p>
<p><b>27. </b>&lt;LI&gt;HP Deskjet 500 Rp 1.500.000</p>
<p><b>28. </b>&lt;LI&gt;HP Deskjet 600C Rp 1.900.000</p>
<p><b>29. </b>&lt;UL&gt;</p>
<p><b>30. </b></p>
<p><b>31. </b>&lt;/BODY&gt;</p>
<p><b>32. </b>&lt;/HTML&gt;</p>
</blockquote>
<p>Simpan dan berinama LATIHAN1-4.HTML, lalu buka file tersebut pada browser. Anda akan melihat sebuah gambar logo di atas halaman. Jika anda belum memiliki file gambar dengan nama <b>logo.jpg</b>, anda harus terlebih dahulu mengkopikannya pada direktori tempat file LATIHAN1-4.HTML berada. </p>
<p>Pada tag IMG ini kita dapat mendefinisikan beberapa parameter seperti:</p>
<p>Tabel 2 Paramter Tag IMG<br />
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="79">
<p>Parameter</p>
</td>
<td valign="top" width="275">
<p>Fungsi</p>
</td>
<td valign="top" width="204">
<p>Isi</p>
</td>
</tr>
<tr>
<td valign="top" width="79">
<p>BORDER</p>
</td>
<td valign="top" width="275">
<p>Menentukan ukuran garis pinggir gambar jika dijadikan hypertext</p>
</td>
<td valign="top" width="204">
<p>0,1,2,… (pixel)</p>
</td>
</tr>
<tr>
<td valign="top" width="79">
<p>WIDTH</p>
</td>
<td valign="top" width="275">
<p>Menentukan ukuran lebar tabel</p>
</td>
<td valign="top" width="204">
<p>Dapat dalam % ukuran layar, atau dalam pixel</p>
</td>
</tr>
<tr>
<td valign="top" width="79">
<p>HEIGHT</p>
</td>
<td valign="top" width="275">
<p>Menentukan ukuran tinggi tabel</p>
</td>
<td valign="top" width="204">
<p>Dapat dalam % ukuran layar, atau dalam pixel</p>
</td>
</tr>
<tr>
<td valign="top" width="79">
<p>ALT</p>
</td>
<td valign="top" width="275">
<p>Menentukan text yang akan muncul di browser saat gambar berlum terdownload.</p>
</td>
<td valign="top" width="204">
<p>Text</p>
</td>
</tr>
<tr>
<td valign="top" width="79">
<p>HSPACE</p>
</td>
<td valign="top" width="275">
<p>Menentukan ukuran spasi antar gambar dengan text dalam arah horizontal</p>
</td>
<td valign="top" width="204">
<p>0,1,2,… (pixel)</p>
</td>
</tr>
<tr>
<td valign="top" width="79">
<p>VSPACE</p>
</td>
<td valign="top" width="275">
<p>Menentukan ukuran spasi antar gambar dengan text dalam arah vertikan</p>
</td>
<td valign="top" width="204">
<p>0,1,2,… (pixel)</p>
</td>
</tr>
</tbody>
</table>
<h2><a name="_Toc466783935">Link</a></h2>
<p>Kemampuan web untuk dapat melompat ke halaman lain atau ke alamat internet (URL) lain merupakan salah satu fasilitas yang sangat istimewa karena dapat sangat memudahkan pencarian informasi di internet. Sifat ini disebut hyperlink dan text atau gambar yang dapat kita click untuk menuju suatu halaman atau alamat tertentu disebut hypertext.</p>
<p>Untuk membuat hypertext ke halaman atau alamat URL lain digunakan tag sebagai berikut:</p>
<blockquote><p>&lt;A HREF=URL _tujuan&gt; hypertext &lt;/A&gt;</p>
</blockquote>
<p>URL_tujuan dapat berupa nama file yang akan dibuka setelah hypertext di-click oleh pengguna, maupun URL dari sebuah halaman yang ada di internet.</p>
<h3><a name="_Toc466783936">Latihan: Menggunakan Link</a></h3>
<p>Buka file LATIHAN1-4.HTML lalu berinama dengan nama LATIHAN1-5.HTML. Ketikkan baris-baris tambahan berikut ini:</p>
<blockquote><p><b>1. </b>&lt;HEAD&gt;</p>
<p><b>2. </b>&lt;TITLE&gt; Latihan menggunakan link&lt;/TITLE&gt;</p>
<p><b>3. </b>&lt;/HEAD&gt;</p>
<p><b>4. </b>&lt;BODY&gt;</p>
<p><b>5. </b></p>
<p><b>6. </b>&lt;IMG SRC=logo.jpg&gt;</p>
<p><b>7. </b></p>
<p><b>8. </b>&lt;H1&gt;Produk PT Maju Terus&lt;/H1&gt; </p>
<p><b>9. </b>Berikut ini adalah produk yang terdapat pada PT Maju Terus.</p>
<p><b>10. </b></p>
<p><b>11. </b>&lt;H2&gt;Komputer&lt;/H2&gt;</p>
<p><b>12. </b>&lt;OL&gt;</p>
<p><b>13. </b>&lt;LI&gt;<b>&lt;A HREF=http://www.compaq.com&gt;</b>Compaq Pentium II Rp 15.000.000<b>&lt;/A&gt;</b></p>
<p><b>14. </b>&lt;LI&gt;<b>&lt;A HREF=http://www.hp.com&gt;</b>HP Pentium 200 Rp 16.000.000<b>&lt;/A&gt;</b></p>
<p><b>15. </b>&lt;LI&gt;<b>&lt;A HREF=http://www.acer.com&gt;</b>Acer Pentium 100 Rp 14.000.000<b>&lt;/A&gt;</b></p>
<p><b>16. </b>&lt;/OL&gt;</p>
<p><b>17. </b></p>
<p><b>18. </b>&lt;H2&gt;Asesori &lt;/H2&gt;</p>
<p><b>19. </b>&lt;OL&gt;</p>
<p><b>20. </b>&lt;LI&gt;Disket 1.44M</p>
<p><b>21. </b>&lt;LI&gt;Cartridge 100 M Rp 100.000</p>
<p><b>22. </b>&lt;/OL&gt;</p>
<p><b>23. </b></p>
<p><b>24. </b>&lt;H2&gt;Printer&lt;/H2&gt;</p>
<p><b>25. </b>&lt;UL&gt;</p>
<p><b>26. </b>&lt;LI&gt;HP Laserjet III Rp 2.000.000</p>
<p><b>27. </b>&lt;LI&gt;HP Deskjet 500 Rp 1.500.000</p>
<p><b>28. </b>&lt;LI&gt;HP Deskjet 600C Rp 1.900.000</p>
<p><b>29. </b>&lt;UL&gt;</p>
<p><b>30. </b>&lt;/BODY&gt;</p>
<p><b>31. </b>&lt;/HTML&gt;</p>
</blockquote>
<p>Pada contoh di atas, jika anda men-click text Compaq Pentium II Rp 15.000.000, anda akan dilompatkan ke homepage Compaq yang beralamatkan pada <a href="http://www.compaq.com/">http://www.compaq.com</a>. </p>
<p>Link dapat juga terjadi ke halaman lain pada server yang sama. Untuk ini parameter HREF cukup diisikan nama file HTML tujuan yang ingin anda buka. Contohnya:</p>
<blockquote><p>&lt;A HREF=disktet.html&gt;Disket 1.44MB&lt;/A&gt;</p>
</blockquote>
<p>akan menyebabkan jika anda men-click text “Disket 1.44MB” browser akan membuka file DISKET.HTML pada direktori yang sama dengan file yang memanggil tag ini. Untuk ini anda harus terlebih dahulu memiliki file dengan nama DISKET.HTML.</p>
<h2><a name="_Toc466783937">Link Pada Satu Halaman</a></h2>
<p>Link dapat juga terjadi pada dokumen yang sama, terutama jika dokumen itu terdiri dari banyak halaman yang menyulitkan pengguna untuk membacanya. Link pada satu dokumen ini dapat diibaratkan sebagai daftar isi dari dokumen tersebut. </p>
<p>Untuk membuat link pada satu halaman, digunakan kombinasi tag &lt;A NAME=tujuan1&gt; … &lt;/A&gt; dengan tag &lt;A HREF=#tujuan1&gt; … &lt;/A&gt;. Contohnya jika anda memiliki bagian dokumen sebagai berikut:</p>
<blockquote><p>.</p>
<p>.</p>
<p>&lt;H2&gt;&lt;A NAME=bab2&gt;BAB 2 Pembibitan&lt;/A&gt;&lt;/H2&gt;</p>
<p>.</p>
<p>.</p>
<p>maka bagian lain pada dokumen anda dapat membuat link ke bagian di atas dengan tag sebagai berikut:</p>
<p>.</p>
<p>.</p>
<p>… detail mengenai pembibitan dapat dilihat pada &lt;A HREF=#bab2&gt;Bab 2&lt;/A&gt;.</p>
<p>.</p>
<p>.</p>
</blockquote>
<h2><a name="_Toc466783938">Link Dari Suatu Gambar</a></h2>
<p>Link dapat pula kita buat bukan hanya pada text, namun juga pada gambar. Untuk melakukan ini, gunakan tag sebagai berikut:</p>
<blockquote><p>&lt;A HREF=url_tujuan&gt; &lt;IMG SRC=gambar.jpg&gt; &lt;/A&gt;</p>
</blockquote>
<h2><a name="_Toc466783939">Tabel HTML</a></h2>
<p>Tabel merupakan cara untuk menampilkan informasi dalam bentuk sel yang terdiri dari baris dan kolom. Untuk menampilkan data dalam bentuk tabel pada HTML, digunakan tag &lt;TABLE&gt;… &lt;/TABLE&gt;. Tag ini berisi tag &lt;TR&gt; … &lt;/TR&gt; untuk menentukan baris (table row) yang didalamnya terdapat tag &lt;TD&gt; …&lt;/TD&gt; untuk menampilkan data pada setiap sel tabel (table data). Struktur tag ini adalah sebagai berikut:</p>
<blockquote><p>&lt;TABLE&gt;</p>
<p>&lt;TR&gt;</p>
<p>&lt;TD&gt;data baris 1 kolom 1&lt;/TD&gt;&lt;TD&gt;data baris 1 kolom 2&lt;/TD&gt;</p>
<p>&lt;/TR&gt;</p>
<p>&lt;TR&gt;</p>
<p>&lt;TD&gt;data baris 2 kolom 1&lt;/TD&gt;&lt;TD&gt;data baris 2 kolom 2&lt;/TD&gt;</p>
<p>&lt;/TR&gt;</p>
<p>&lt;TR&gt;</p>
<p>&lt;TD&gt;data baris 3 kolom 1&lt;/TD&gt;&lt;TD&gt;data baris 3 kolom 2&lt;/TD&gt;</p>
<p>&lt;/TR&gt;</p>
<p>…</p>
<p>&lt;/TABLE&gt;</p>
</blockquote>
<h3><a name="_Toc466783940">Latihan: Menggunakan Tabel HTML 1</a></h3>
<p>Buka file LATIHAN1-5.HTML dan simpan sebagai LATIHAN1-6.HTML. Ketikkan baris-baris tambahan sebagai berikut:</p>
<blockquote><p><b>1. </b>&lt;HEAD&gt;</p>
<p><b>2. </b>&lt;TITLE&gt; Latihan menggunakan link&lt;/TITLE&gt;</p>
<p><b>3. </b>&lt;/HEAD&gt;</p>
<p><b>4. </b>&lt;BODY&gt;</p>
<p><b>5. </b></p>
<p><b>6. </b>&lt;IMG SRC=logo.jpg&gt;</p>
<p><b>7. </b></p>
<p><b>8. </b>&lt;H1&gt;Produk PT Maju Terus&lt;/H1&gt; </p>
<p><b>9. </b>Berikut ini adalah produk yang terdapat pada PT Maju Terus.</p>
<p><b>10. </b></p>
<p><b>11. </b>&lt;H2&gt;Komputer&lt;/H2&gt;</p>
<p><b>12. </b>&lt;TABLE&gt;</p>
<p><b>13. </b></p>
<p><b>14. </b>&lt;TR&gt;</p>
<p><b>15. </b><b>&lt;TD&gt;</b>&lt;A HREF=http://www.compaq.com&gt;Compaq Pentium II &lt;/A&gt;<b>&lt;/TD&gt;</b></p>
<p><b>16. </b><b>&lt;TD&gt;</b>Rp 15.000.000<b>&lt;/TD&gt;</b></p>
<p><b>17. </b>&lt;/TR&gt;</p>
<p><b>18. </b></p>
<p><b>19. </b>&lt;TR&gt;</p>
<p><b>20. </b><b>&lt;TD&gt;</b>&lt;A HREF=http://www.hp.com&gt;HP Pentium 200&lt;/A&gt;<b>&lt;/TD&gt;</b></p>
<p><b>21. </b><b>&lt;TD&gt;</b>Rp 16.000.000<b>&lt;/TD&gt;</b></p>
<p><b>22. </b>&lt;/TR&gt;</p>
<p><b>23. </b></p>
<p><b>24. </b>&lt;TR&gt;</p>
<p><b>25. </b><b>&lt;TD&gt;</b>&lt;A HREF=http://www.acer.com&gt;Acer Pentium 100&lt;/A&gt;<b>&lt;/TD&gt;</b></p>
<p><b>26. </b><b>&lt;TD&gt;</b>Rp 14.000.000<b>&lt;/TD&gt;</b></p>
<p><b>27. </b>&lt;/TR&gt;</p>
<p><b>28. </b></p>
<p><b>29. </b>&lt;/TABLE&gt;</p>
<p><b>30. </b></p>
<p><b>31. </b>&lt;H2&gt;Asesori &lt;/H2&gt;</p>
<p><b>32. </b>&lt;UL&gt;</p>
<p><b>33. </b>&lt;LI&gt;Disket 1.44M</p>
<p><b>34. </b>&lt;LI&gt;Cartridge 100 M Rp 100.000</p>
<p><b>35. </b>&lt;/UL&gt;</p>
<p><b>36. </b></p>
<p><b>37. </b>&lt;H2&gt;Printer&lt;/H2&gt;</p>
<p><b>38. </b>&lt;UL&gt;</p>
<p><b>39. </b>&lt;LI&gt;HP Laserjet III Rp 2.000.000</p>
<p><b>40. </b>&lt;LI&gt;HP Deskjet 500 Rp 1.500.000</p>
<p><b>41. </b>&lt;LI&gt;HP Deskjet 600C Rp 1.900.000</p>
<p><b>42. </b>&lt;UL&gt;</p>
<p><b>43. </b>&lt;/BODY&gt;</p>
<p><b>44. </b>&lt;/HTML&gt;</p>
</blockquote>
<p>Buka file LATIHAN1-6.HTML pada browser, anda akan melihat bagian komputer akan berada pada sebuah tabel yang terformat rapi. </p>
<h3><a name="_Toc466783941">Latihan: Menggunakan Tabel HTML 2</a></h3>
<p>Lakukan pemformatan tabel terhadap bagian-bagian lainnya, dan simpan kedalam file LATIHAN1-7.HTML.</p>
<p>Di dalam tag TABLE kita dapat mendefinisikan beberapa parameter seperti:</p>
<p>Tabel 1. 3 Paramter Tag TABLE<br />
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="120">
<p><b>Parameter</b></p>
</td>
<td valign="top" width="209">
<p><b>Fungsi</b></p>
</td>
<td valign="top" width="228">
<p><b>Isi</b></p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>BORDER</p>
</td>
<td valign="top" width="209">
<p>Menentukan ukuran garis pinggir tabel</p>
</td>
<td valign="top" width="228">
<p>0,1,2,… (pixel)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>WIDTH</p>
</td>
<td valign="top" width="209">
<p>Menentukan ukuran lebar tabel</p>
</td>
<td valign="top" width="228">
<p>Dapat dalam % ukuran layar, atau dalam pixel</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>HEIGHT</p>
</td>
<td valign="top" width="209">
<p>Menentukan ukuran tinggi tabel</p>
</td>
<td valign="top" width="228">
<p>Dapat dalam % ukuran layar, atau dalam pixel</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>BGCOLOR</p>
</td>
<td valign="top" width="209">
<p>Menentukan warna tabel</p>
</td>
<td valign="top" width="228">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>BACKGROUND</p>
</td>
<td valign="top" width="209">
<p>Menentukan nama file gambar untuk background tabel</p>
</td>
<td valign="top" width="228">
<p>Nama file background (dalam format JPG atau GIF)</p>
</td>
</tr>
</tbody>
</table>
<p>Sebagian besar dari parameter TABEL dapat digunakan untuk menentukan parameter dari baris maupun sel. Untuk menentukan parameter baris gunakan tag </p>
<blockquote><p>&lt;TR PARAMETER1=aaa PARAMETER2=bbb …&gt; &lt;/TR&gt;. </p>
</blockquote>
<p>Sedangkan untuk menentukan parameter dari suatu sel gunakan tag</p>
<blockquote><p>&lt;TD PARAMETER1=aaa PARAMETER2=bbb …&gt; &lt;/TD&gt;</p>
</blockquote>
<h2><a name="_Toc466783942">Format Paragraph</a></h2>
<p>Disamping perintah-perintah format yang telah dijelaskan di atas, HTML memiliki beberapa format standard lainnya yang berupa text alignment, paragraph, horizontal line.</p>
<p>Tabel 1. 4 Tag Paragraph<br />
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="179">
<p>Tag format</p>
</td>
<td valign="top" width="217">
<p>Guna</p>
</td>
<td valign="top" width="156">
<p>Contoh</p>
</td>
</tr>
<tr>
<td valign="top" width="179">
<p>&lt;CENTER&gt; … &lt;/CENTER&gt;</p>
</td>
<td valign="top" width="217">
<p>Membuat text suatu paragraph menjadi rata ketengah</p>
</td>
<td valign="top" width="156">
<p>&lt;CENTER&gt;</p>
<p>text ini akan rata ke tengah</p>
<p>&lt;/CENTER&gt;</p>
</td>
</tr>
<tr>
<td valign="top" width="179">
<p>&lt;RIGHT&gt;…&lt;/RIGHT&gt;</p>
</td>
<td valign="top" width="217">
<p>Membuat text suatu paragraph menjadi rapat kanan</p>
</td>
<td valign="top" width="156">
<p>&lt;RIGHT&gt;</p>
<p>text ini akan rata ke tengah</p>
<p>&lt;/RIGHT &gt;</p>
</td>
</tr>
<tr>
<td valign="top" width="179">
<p>&lt;P&gt;</p>
</td>
<td valign="top" width="217">
<p>Membuat satu pemisah paragraph</p>
</td>
<td valign="top" width="156">
<p>Paragraph 1 </p>
<p>&lt;P&gt;</p>
<p>Paragraph 2</p>
</td>
</tr>
<tr>
<td valign="top" width="179">
<p>&lt;BR&gt;</p>
</td>
<td valign="top" width="217">
<p>Membuat satu pemisah baris</p>
</td>
<td valign="top" width="156">
<p>Baris 1</p>
<p>&lt;BR&gt;</p>
<p>Baris 2</p>
</td>
</tr>
<tr>
<td valign="top" width="179">
<p>&lt;HR&gt;</p>
</td>
<td valign="top" width="217">
<p>Memberikan satu garis pemisah yang berkesan 3 dimensi</p>
</td>
<td valign="top" width="156">
<p>Paragraph 1</p>
<p>&lt;HR&gt;</p>
<p>Paragraph 2</p>
</td>
</tr>
</tbody>
</table>
<h2><a name="_Toc466783943">Format Font</a></h2>
<p>Font pada halaman HTML dapat diformat seusai dengan desain yang anda tentukan. Untuk ini digunakan tag &lt;FONT&gt;…&lt;/FONT&gt;. Berikut ini beberapa parameter yang dapat digunakan untuk memformat font.</p>
<p>Tabel 1. 5 Paramter Tag FONT<br />
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="81">
<p>Tag format</p>
</td>
<td valign="top" width="153">
<p>Fungsi</p>
</td>
<td valign="top" width="318">
<p>Isi</p>
</td>
</tr>
<tr>
<td valign="top" width="81">
<p>SIZE</p>
</td>
<td valign="top" width="153">
<p>Menentukan ukuran font</p>
</td>
<td valign="top" width="318">
<p>…,-2,-1,+1,+2,+3,..</p>
</td>
</tr>
<tr>
<td valign="top" width="81">
<p>COLOR</p>
</td>
<td valign="top" width="153">
<p>Menentukan warna font</p>
</td>
<td valign="top" width="318">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
<tr>
<td valign="top" width="81">
<p>FACE</p>
</td>
<td valign="top" width="153">
<p>Menentukan jenis font</p>
</td>
<td valign="top" width="318">
<p>Nama font yang tersedia di browser, misalnya &#8220;Arial&#8221;, &#8220;Times New Roman&#8221;, &#8220;Courier&#8221;, dll</p>
</td>
</tr>
</tbody>
</table>
<h2><a name="_Toc466783944">Warna Dokumen</a></h2>
<p>Pada tag BODY dapat kita sertakan informasi tambahan berupa parameter yang digunakan untuk memodifikasi tampilan dari seluruh dokumen HTML anda. Untuk menyertakan parameter pada tag BODY, gunakan tag berikut ini:</p>
<blockquote><p>&lt;BODY PARAMETER1=isi_parameter1 PARAMETER2=isi_parameter2 dst&gt;</p>
</blockquote>
<p>Beberapa parameter yang diapat digunakan untuk tag BODY adalah:</p>
<p>Tabel 1. 6 Parameter Tag BODY<br />
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="120">
<p>Parameter</p>
</td>
<td valign="top" width="198">
<p>Fungsi</p>
</td>
<td valign="top" width="204">
<p>Isi</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>BGCOLOR</p>
</td>
<td valign="top" width="198">
<p>Menentukan warna backgound halaman</p>
</td>
<td valign="top" width="204">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>BACKGROUND</p>
</td>
<td valign="top" width="198">
<p>Menentukan nama file gambar untuk background halaman</p>
</td>
<td valign="top" width="204">
<p>Nama file background (dalam format JPG atau GIF)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>TEXT</p>
</td>
<td valign="top" width="198">
<p>Menentukan warna text normal</p>
</td>
<td valign="top" width="204">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>LINK</p>
</td>
<td valign="top" width="198">
<p>Menentukan warna hypertext</p>
</td>
<td valign="top" width="204">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>ALINK</p>
</td>
<td valign="top" width="198">
<p>Menentukan warna hypertext saat di-click</p>
</td>
<td valign="top" width="204">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
<tr>
<td valign="top" width="120">
<p>VLINK</p>
</td>
<td valign="top" width="198">
<p>Menentukan warna hypertext yang telah pernah dikunjungi</p>
</td>
<td valign="top" width="204">
<p>Dalam hexadesimal #000000 (hitam) sampai dengan #FFFFFF (putih)</p>
</td>
</tr>
</tbody>
</table>
<p>Contoh untuk membuat background halaman menjadi warna merah, warna hypertext menjadi hijau, dan warna text normal menjadi putih, digunakan tag sebagai berikut:</p>
<blockquote><p>&lt;BODY BGCOLOR=&#8221;#FF0000&#8243; TEXT=&#8221;#FFFFFF&#8221; LINK=&#8221;#008000&#8243; VLINK=&#8221;#800080&#8243; ALINK=&#8221;#0000FF&#8221;&gt;</p>
</blockquote>
<h2><a name="_Toc466783945">Frame HTML</a></h2>
<p>Frame HTML dapat digunakan untuk membuat tampilan halaman HTML yang terbagi-bagi menjadi beberapa bagian dimana setiap bagiannya merupakan satu halaman HTML terpisah. Ini dilakukan untuk membuat tampilan halaman HTML yang salah satu atau beberapa bagian berganti-ganti isinya sedangkan bagian lain tetap sehingga dapat menghemat bandwidth internet dan mempercepat proses download secara keseluruhan.</p>
<p>Berikut ini contoh ilustrasi dari frame HTML:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image004.gif"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 2 Frame HTML" border="0" alt="Gambar 2 Frame HTML" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image004_thumb.gif" width="240" height="127"></a></p>
<p>Gambar 2 Frame HTML</p>
<p>Pada contoh di atas, anda memiliki sebuah halaman HTML utama yang terdiri dari 5 buah frame. Masing-masing frame memanggil file-file HTML yang terpisah untuk dijadikan menjadi satu tampilan pada halaman HTML utama.</p>
<p>Untuk membuat frame pada HTML digunakan tag &lt;FRAMESET&gt; &#8230; &lt;/FRAMESET&gt;. Di dalam tag ini terdapat tag &lt;FRAME&gt; yang menentukan isi dari frame yang ditentukan pada tag FRAMESET. Struktur dari tag ini adalah:</p>
<blockquote><p>&lt;FRAMESET ROWS=a,b,c,… atau COLS=a,b,c,…&gt;</p>
<p>&lt;FRAME NAME=nama_frame1 SRC=nama_file_html_frame1&gt;</p>
<p>&lt;FRAME NAME=nama_frame2 SRC=nama_file_html_frame2&gt;</p>
<p>&lt;FRAME NAME=nama_frame3 SRC=nama_file_html_frame3&gt;</p>
<p>&lt;/FRAMESET&gt;</p>
</blockquote>
<p>Pada tag FRAMESET terdapat parameter ROWS atau COLS yang menentukan apakan tampilan dokumen terbagi menjadi baris-baris frame atau kolom-kolom frame. Isi dari parameter ini adalah persentasi atau ukuran dalam pixel dari tinggi atau lebar dari masing-masing frame. Misalnya kita tentukan parameter ROWS=40,100 maka halaman HTML kita akan terbagi menjadi dua frame yang berbentuk dua baris dengan tinggi masing-masing 40 dan 100 pixel. Jika ditentukan parameter COLS=20%,* maka dokumen kita akan berbentuk dua kolom frame dengan ukuran lebar masing-masing 20% dan 80% dari lebar window browser. Tanda * digunakan untuk harga sisa dari 100% harga yang telah ditentukan pada harga lainnya.</p>
<p>Pada tag FRAME tetdapat parameter NAME yang menentukan identifikasi berupa nama dari setiap frame. Identifikasi ini diperlukan nantinya untuk hubungan antar frame. Parameter selanjutnya adalah SRC yang berisi nama file HTML yang akan ditampilkan pada frame ini.</p>
<p>Frame dapat kita susun bertingkat untuk menghasilkan susunan frame yang berbentuk kolom dan baris sekaligus. Perhatikan contoh berikut:</p>
<blockquote><p>&lt;FRAMESET ROWS=20%,*&gt;</p>
<p>&lt;FRAME NAME=header SRC=header.html&gt;</p>
<p>&lt;FRAMESET COLS=30%,*&gt;</p>
<p>&lt;FRAME NAME=kiri SRC=kiri.html&gt;</p>
<p>&lt;FRAME NAME=kanan SRC=kanan.html&gt;</p>
<p>&lt;/FRAMESET&gt;</p>
<p>&lt;/FRAMESET&gt;</p>
</blockquote>
<h3><a name="_Toc466783946">Latihan: Menggunakan Frame 1</a></h3>
<p>Ketikkan baris-baris di atas dan simpan dengan nama file LATIHAN1-8.HTML. Jalankan atau buka di browser. Anda akan mendapatkan tampilan sebagai berikut:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image006.gif"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 3 Tampilan Latihan 1. 8" border="0" alt="Gambar 3 Tampilan Latihan 1. 8" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image006_thumb.gif" width="240" height="197"></a></p>
<p>Gambar 3 Tampilan Latihan 1. 8</p>
<p>Pesan-pesan “File not found” muncul karena memang kita belum memiliki file dengan nama HEADER.HTML, KIRI.HTML, dan KANAN.HTML. File-file ini akan kita buat pada latihan selanjutnya.</p>
<h3><a name="_Toc466783947">Latihan: Menggunakan Frame 2</a></h3>
<p>Buat file baru dengan nama HEADER.HTML, KIRI.HTML, dan KANAN.HTML dengan isi masing-masing sebagai berikut:</p>
<h6>File HEADER.HTML</h6>
<blockquote><p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;H1&gt;Header dokumen&lt;/H1&gt;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<h6>File KIRI.HTML</h6>
<blockquote><p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;H1&gt;Daftar Isi&lt;/H1&gt;</p>
<p>&lt;A HREF=kanan.html TARGET=kanan&gt;Isi awal&lt;/A&gt;&lt;P&gt;</p>
<p>&lt;A HREF=kanan1.html TARGET=kanan&gt;Isi pertama&lt;/A&gt;&lt;P&gt;</p>
<p>&lt;A HREF=kanan2.html TARGET=kanan&gt;Isi kedua&lt;/A&gt;&lt;P&gt;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<h6>File KANAN.HTML</h6>
<blockquote><p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;H1&gt;Isi frame awal&lt;/H1&gt;</p>
<p>Isi awal</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<h6>File KANAN1.HTML</h6>
<blockquote><p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;H1&gt;Isi frame dari link pertama&lt;/H1&gt;</p>
<p>Isi dari link pertama</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<h6>File KANAN2.HTML</h6>
<blockquote><p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;H1&gt;Isi frame dari link ke dua&lt;/H1&gt;</p>
<p>Isi dari link ke dua</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<p>Kemudian buka kembali file LATIHAN1-8.HTML dan click link-link yang terdapat pada frame kiri. Anda akan mendapatkan bahwa frame kanan berubah-ubah isinya sesuai dengan link yang anda click.</p>
<p>Satu hal yang baru adalah parameter TARGET pada tag &lt;A HREF&gt;. Parameter ini digunakan untuk menentukan tujuan frame tempat dokumen HTML akan ditampilkan. Parameter ini digunakan saat kita memanfaatkan tag FRAME.</p>
<h2><a name="_Toc466783948">Form HTML</a></h2>
<p>Form HTML merupakan tag yang paling penting khusunya dalam membuat aplikasi berbasis web. Form menyediakan elemen-elemen masukan yang dapat berupa textbox, check box, radio button, dan tombol.</p>
<p>Berikut ini contoh sebuah form pada sebuah halaman HTML.</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image008.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 4 Contoh tampilan FORM HTML" border="0" alt="Gambar 4 Contoh tampilan FORM HTML" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image008_thumb.jpg" width="244" height="227"></a></p>
<p>Gambar 4 Contoh tampilan FORM HTML</p>
<h3><a name="_Toc466783949">Mendeklarasikan Form</a></h3>
<p>Untuk mendeklarasikan sebuah form digunakan tag &lt;FORM&gt; … &lt;/FORM&gt;. Di dalam tag ini kita akan mendefinisikan elemen-elemen form seperti yang telah disebutkan di atas. Selain tag elemen form kita juga dapat menuliskan sembarang text, tag, image. </p>
<p>Elemen tombol Submit digunakan untuk mengirimkan data yang ada pada form ke sebuah program yang akan memproses data tersebut. Tombo Reset digunakan untuk mengosongkan atau mengulangi isi form ke keadaan semulanya.</p>
<p>Struktur tag FORM ini adalah:</p>
<blockquote><p>&lt;FORM ACTION=program_pemroses METHOD=POST atau GET &gt;</p>
<p>elemen 1</p>
<p>elemen 2</p>
<p>… dst</p>
<p>&lt;/FORM&gt;</p>
</blockquote>
<p>Parameter ACTION menentukan file atau program yang akan memproses data yang diterima oleh form saat pengguna men-click tombol Submit. Parameter METHOD digunakan untuk menentukan metoda pengiriman data form ke pemroses apakah GET atau POST.</p>
<h3><a name="_Toc466783950">Elemen Textbox</a></h3>
<p>Elemen ini digunakan untuk menampilkan masukan berupa textbox yang mampu menerima masukan berupa string sebanyak satu baris.</p>
<p>Tag yang digunakan adalah:</p>
<blockquote><p>&lt;INPUT TYPE=TEXT NAME=textbox1 SIZE=xx&gt;</p>
</blockquote>
<p>dimana TYPE menentukan jenis masukan yang berupa TEXT (textbox), NAME adalah identifikasi dari elemen ini untuk dibaca oleh program pemroses nantinya, SIZE adalah ukuran tampilnya textbox ini dalam banyaknya karakter.</p>
<p>Pada browser, elemen ini akan terlihat sebagai berikut:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image010.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 5 Elemen Text Box" border="0" alt="Gambar 5 Elemen Text Box" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image010_thumb.jpg" width="175" height="42"></a></p>
<p>Gambar 5 Elemen Text Box</p>
<h3><a name="_Toc466783951">Elemen Textarea</a></h3>
<p>Elemen ini digunakan untuk menampilkan masukan berupa textbox yang mampu menerima masukan berupa string lebih dari satu baris.</p>
<p>Tag yang digunakan adalah:</p>
<blockquote><p>&lt;TEXTAREA NAME=textbox1 ROWS=xx COLS=yy&gt; isi awal &lt;/TEXTAREA&gt;</p>
</blockquote>
<p>Parameter NAME adalah identifikasi dari elemen ini untuk dibaca oleh program pemroses nantinya, COLS dan ROWS adalah ukuran kolom dan baris tampilnya textbox ini dalam banyaknya karakter. Semua text yang diapit oleh tag ini akan ditampilkan di dalamnya pada saat awal munculnya textbox ini.</p>
<p>Pada browser, elemen ini akan terlihat sebagai berikut:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image012.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 6 Elemen TEXTAREA" border="0" alt="Gambar 6 Elemen TEXTAREA" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image012_thumb.jpg" width="205" height="54"></a></p>
<p>Gambar 6 Elemen TEXTAREA</p>
<h3><a name="_Toc466783952">Elemen Checkbox</a></h3>
<p>Elemen ini digunakan untuk menampilkan masukan berupa pilihan dimana pengguna dapat memilih lebih dari satu pilihan.</p>
<p>Tag yang digunakan adalah:</p>
<blockquote><p>&lt;INPUT TYPE=CHECKBOX NAME=checkbox1 VALUE=ON atau OFF&gt;Pilihan 1</p>
</blockquote>
<p>dimana parameter TYPE menentukan jenis masukan yang berupa CHECKBOX, NAME adalah identifikasi dari elemen ini untuk dibaca oleh program pemroses nantinya, VALUE menentukan apakah pada keadaan awal checkbox ini terpilih (ON) atau tidak (OFF).</p>
<p>Pada browser, elemen ini akan terlihat sebagai berikut:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image014.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 7 Elemen CHECKBOX" border="0" alt="Gambar 7 Elemen CHECKBOX" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image014_thumb.jpg" width="244" height="40"></a></p>
<p>Gambar 7 Elemen CHECKBOX</p>
<h3><a name="_Toc466783953">Elemen Radio Botton</a></h3>
<p>Elemen ini digunakan untuk menampilkan masukan berupa pilihan dimana pengguna hanya dapat memilih satu pilihan pada satu saat.</p>
<p>Tag yang digunakan adalah:</p>
<blockquote><p>&lt;INPUT TYPE=RADIO NAME=radio1 VALUE=pilihan1 CHECKED &gt;Pilihan 1</p>
<p>&lt;INPUT TYPE=RADIO NAME=radio1 VALUE=pilihan2&gt;Pilihan 2</p>
<p>&lt;INPUT TYPE=RADIO NAME=radio1 VALUE=pilihan3&gt;Pilihan 3</p>
<p>dst</p>
</blockquote>
<p>dimana parameter TYPE menentukan jenis masukan yang berupa RADIO (radio button), NAME adalah identifikasi dari elemen ini untuk dibaca oleh program pemroses nantinya, CHECKED menentukan apakah pada keadaan awal radio button ini terpilih atau tidak, VALUE adalah harga dari pilihan.</p>
<p>Pada browser, elemen ini akan terlihat sebagai berikut:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image016.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 8 Elemen RADIO button" border="0" alt="Gambar 8 Elemen RADIO button" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image016_thumb.jpg" width="244" height="39"></a></p>
<p>Gambar 8 Elemen RADIO button</p>
<h3><a name="_Toc466783954">Elemen Drop-Down Menu</a></h3>
<p>Elemen ini digunakan untuk menampilkan masukan berupa pilihan dimana pengguna hanya dapat memilih satu pilihan pada satu saat dan pengguna dapat melihat semua pilihan dengan menekan tombol dropdown yang tersedia.</p>
<p>Tag yang digunakan adalah:</p>
<blockquote><p>&lt;SELECT NAME=menu1&gt;</p>
<p>&lt;OPTION VALUE=pilihan1&gt;Pilihan 1</p>
<p>&lt;OPTION VALUE=pilihan2&gt;Pilihan 2</p>
<p>&lt;OPTION VALUE=pilihan3&gt;Pilihan 3</p>
<p>dst …</p>
<p>&lt;/SELECT&gt;</p>
</blockquote>
<p>Di dalam tag SELECT ini terdapat tag OPTION yang berfungsi untuk menampilkan pilihan-pilihan yang akan tersedia. Setiap pilihan ditentukan isinya dengan parameter VALUE. </p>
<p>Pada browser, elemen ini akan terlihat sebagai berikut:<br />
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="115">
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image018.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 9 Elemen Dropdown" border="0" alt="Gambar 9 Elemen Dropdown" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image018_thumb.jpg" width="96" height="41"></a></p>
</td>
<td valign="top" width="156">
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image020.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 9 Elemen Dropdown" border="0" alt="Gambar 9 Elemen Dropdown" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image020_thumb.jpg" width="105" height="84"></a></p>
</td>
</tr>
</tbody>
</table>
<p>Gambar 9 Elemen Dropdown</p>
<h3><a name="_Toc466783955">Elemen Tombol</a></h3>
<p>Elemen ini digunakan untuk menampilkan tombol yang dapat berupa tombol SUBMIT untuk mengirimkan data ke pemroses di server, RESET untuk mengulangi isian form, atau NORMAL yang tidak berfungsi apapun sebelum kita mendefinisikan sebuah fungsi untuknya dengan bantuan client-side scripting seperti JavaScript atau VBScript. </p>
<p>Tag yang digunakan adalah:</p>
<p>&lt;INPUT TYPE=SUBMIT VALUE=OK NAME=tombol1&gt; untuk tombol Submit</p>
<p>&lt;INPUT TYPE=RESET VALUE=Reset NAME=tombol2&gt; untuk tombol Reset</p>
<p>&lt;INPUT TYPE=NORMAL VALUE=Jumlah NAME=tombol3&gt; untuk tombol Normal</p>
<p>Pada browser, elemen ini akan terlihat sebagai berikut:</p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image022.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Gambar 10 Elemen Tombol" border="0" alt="Gambar 10 Elemen Tombol" src="http://www.dijexi.com/wp-content/uploads/2009/07/clip_image022_thumb.jpg" width="202" height="54"></a></p>
<p>Gambar 10 Elemen Tombol</p>
<h3><a name="_Toc466783956">Latihan: Menggunakan Elemen Form</a></h3>
<p>Kita akan membuat sebuah form dengan kriteria sebagai berikut:</p>
<ul>
<li>Mampu menampung field Nama, Alamat, Telpon, Fax, dan Email
<li>Mampu menampung field Pekerjaan yang berupa dropdown menu dengan pilihan “Mahasiswa”, “Pelajar”, “Pegawai Negeri”, dan “Pegawai Swasta”, dengan isi masing-masing “mahasiswa”, “pelajar”, “peg_negeri”, dan “peg_swasta”.
<li>Mempu menampung field Anggota yang berupa pilihan “Ya” atau “Tidak”.
<li>Terdapat tombol dengan text “Kirim Data” untuk mengirim data dan “Ulangi” untuk mengulangi proses pengisian.
<li>Program yang akan memproses data ini berada di server dengan nama PROSES.EXE dan data dikiriman dengan metoda GET </li>
</ul>
<p>Untuk membuat form dengan kriteria seperti di atas, ketikkan baris-baris berikut:</p>
<blockquote><p><b>1. </b>&lt;HTML&gt;</p>
<p><b>2. </b>&lt;BODY&gt;</p>
<p><b>3. </b>&lt;FORM ACTION=PROSES.EXE METHOD=GET&gt;</p>
<p><b>4. </b>Nama : &lt;INPUT TYPE=TEXT NAME=nama&gt; &lt;P&gt;</p>
<p><b>5. </b>Alamat: &lt;INPUT TYPE=TEXT NAME=alamat&gt; &lt;P&gt;</p>
<p><b>6. </b>Telepon: &lt;INPUT TYPE=TEXT NAME=telepon&gt; &lt;P&gt;</p>
<p><b>7. </b>Fax: &lt;INPUT TYPE=TEXT NAME=fax&gt; &lt;P&gt;</p>
<p><b>8. </b>Email: &lt;INPUT TYPE=TEXT NAME=email&gt; &lt;P&gt;</p>
<p><b>9. </b></p>
<p><b>10. </b>&lt;SELECT NAME=pekerjaan&gt;</p>
<p><b>11. </b>&lt;OPTION VALUE=mahasiswa&gt;Mahasiswa</p>
<p><b>12. </b>&lt;OPTION VALUE=pelajar &gt;Pelajar</p>
<p><b>13. </b>&lt;OPTION VALUE=peg_negeri &gt;Pegawai Negeri</p>
<p><b>14. </b>&lt;OPTION VALUE=peg_swasta &gt;Pegawai Swasta</p>
<p><b>15. </b>&lt;/SELECT&gt;</p>
<p><b>16. </b></p>
<p><b>17. </b>Anggota : </p>
<p><b>18. </b>&lt;INPUT TYPE=RADIO NAME=anggota VALUE=ya CHECKED&gt;Ya </p>
<p><b>19. </b>&lt;INPUT TYPE=RADIO NAME=anggota VALUE=bukan &gt;Bukan</p>
<p><b>20. </b></p>
<p><b>21. </b>&lt;INPUT TYPE=SUBMIT VALUE=&#8221;Kirim Data&#8221; NAME=submit&gt;</p>
<p><b>22. </b>&lt;INPUT TYPE=SUBMIT VALUE=&#8221;Ulangi&#8221; NAME=reset&gt;</p>
<p><b>23. </b>&lt;/FORM&gt;</p>
<p><b>24. </b>&lt;/BODY&gt;</p>
<p><b>25. </b>&lt;/HTML&gt;</p>
</blockquote>
<p>Pada form di atas, ketikan pengguna men-click tombol Submit, data akan terkirim ke server. Data ini tersusun dalam pasangan nama elemen form dan isinya dengan tanda &#8216;=&#8217;. Kesemua pasangan itu dipisahkan dengan tanda &amp;.</p>
<p>Data-data ini kemudian akan diberikan ke server dan diteruskan ke program yang pada contoh di atas bernama PROSES.PHP. Bagaimana cara memproses data yang dimaksud sehingga sesuai dengan spesifikasi yang ditentukan, akan kita pelajari pada bagian selanjutnya.</p>
<h2>Layer HTML</h2>
<p>Layer adalah bagian dari dokumen HTML yang posisinya dapat diatur dalam satuan pixel (LEFT dan TOP), demikian pula lebar dan tingginya (WIDTH dan HEIGHT). </p>
<p>Boleh terdapat lebih dari satu layer dalam satu dokumen, masing-masing dapat saling bertumpuk =&gt; urutan tumpukan dapat diatur (Z-INDEX) </p>
<p><a href="http://www.dijexi.com/wp-content/uploads/2009/07/layers.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="layers" border="0" alt="layers" src="http://www.dijexi.com/wp-content/uploads/2009/07/layers_thumb.jpg" width="305" height="172"></a></p>
<p>Layer dapat berisi semua tag HTML dan segala jenis in formasi.</p>
<p>Layer dapat dibuat dengan beberapa Tag sbb: </p>
<table border="1" cellpadding="0" width="490">
<tbody>
<tr>
<td width="82">
<p><b>Tag</b></p>
</td>
<td width="106">
<p><b>Keterangan</b></p>
</td>
<td width="104">
<p><b>atribut</b></p>
</td>
<td width="196">
<p><b>Contoh</b></p>
</td>
</tr>
<tr>
<td width="82">
<p>&lt;SPAN&gt;</p>
</td>
<td width="106">
<p>Character-level <br />Bisa di IE maupun Netscape</p>
</td>
<td width="104">
<p>ID <br />STYLE</p>
</td>
<td width="196">
<p>&lt;SPAN id=&#8221;Layer1&#8243; style=&#8221;position:absolute; left:126px; top:390px; width:200px; height:115px; z-index:1&#8243;&gt; &#8230; isi layer &#8230; &lt;/SPAN&gt;</p>
</td>
</tr>
<tr>
<td width="82">
<p>&lt;DIV&gt;</p>
</td>
<td width="106">
<p>Block-level <br />Bisa di IE maupun Netscape</p>
</td>
<td width="104">
<p>ID <br />STYLE</p>
</td>
<td width="196">
<p>&lt;DIV id=&#8221;Layer1&#8243; style=&#8221;position:absolute; left:126px; top:390px; width:200px; height:115px; z-index:1; overflow: visible&#8221;&gt;&#8230; isi layer &#8230;&lt;/DIV&gt; </p>
</td>
</tr>
<tr>
<td width="82">
<p>&lt;LAYER&gt;</p>
</td>
<td width="106">
<p>Hanya di Netscape</p>
</td>
<td width="104">
<p>ID <br />LEFT <br />TOP <br />WIDTH <br />HEIGHT <br />Z-INDEX <br />BGCOLOR </p>
</td>
<td width="196">
<p>&lt;LAYER id=&#8221;Layer1&#8243; left=&#8221;89&#8243; top=&#8221;515&#8243; width=&#8221;200&#8243; height=&#8221;115&#8243; z-index=&#8221;1&#8243;&gt;&#8230; isi layer &#8230;&lt;/LAYER&gt;</p>
</td>
</tr>
<tr>
<td width="82">
<p>&lt;ILAYER&gt;</p>
</td>
<td width="111">
<p>Hanya di Netscape</p>
</td>
<td width="124">
<p>ID <br />LEFT <br />TOP <br />WIDTH <br />HEIGHT <br />Z-INDEX <br />BGCOLOR </p>
</td>
<td width="241">
<p>&lt;ILAYER id=&#8221;Layer1&#8243; left=&#8221;89&#8243; top=&#8221;515&#8243; width=&#8221;200&#8243; height=&#8221;115&#8243; z-index=&#8221;1&#8243;&gt;&#8230; isi layer &#8230;&lt;/ILAYER&gt;</p>
</td>
</tr>
</tbody>
</table>
<p>Contoh </p>
<blockquote><p>&lt;HTML&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;span id=&#8221;Layer1&#8243; style=&#8221;position:absolute;    left:126px; top:390px; width:200px;&nbsp;&nbsp; height:115px; z-index:1&#8243;&gt;</p>
<p>&nbsp; Text ini berada di dalam layer SPAN</p>
<p>&lt;/span&gt;</p>
<p>&lt;div id=&#8221;Layer2&#8243;&nbsp;&nbsp; style=&#8221;position:absolute; width:200px; height:115px;&nbsp;&nbsp; z-index:1; left: 58px; top: 904px; <br />&nbsp; background-color: #CCFFCC;&nbsp;&nbsp; layer-background-color: #CCFFCC;&nbsp;&nbsp; border: 1px none #000000&#8243;&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; Text ini berada di dalam layer DIV</p>
<p>&lt;/div&gt;</p>
<p>&lt;layer id=&#8221;Layer3&#8243; left=&#8221;109&#8243; top=&#8221;931&#8243;&nbsp;&nbsp; width=&#8221;200&#8243; height=&#8221;115&#8243; z-index=&#8221;1&#8243; bgcolor=&#8221;#FF3399&#8243;&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; Text ini berada di dalam layer LAYER</p>
<p>&lt;/layer&gt;</p>
<p>&lt;ilayer id=&#8221;Layer4&#8243; left=&#8221;281&#8243; top=&#8221;36&#8243;&nbsp;&nbsp; width=&#8221;200&#8243; height=&#8221;115&#8243; z-index=&#8221;1&#8243; bgcolor=&#8221;#CCFFCC&#8221;&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; Text ini berada di dalam layer ILAYER</p>
<p>&lt;/ilayer&gt;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
</p>
</p>
</p>
</p>
</p>
<h2 class="zemanta-related">Cascading Style Sheet (CSS)</h2>
<p class="zemanta-related">CSS adalah feature HTML yang digunakan untuk memperkaya desain tampilan dokumen/style (ukuran font, jenis font, warna, tingkat presisi pixel, dsb) dan mempermudah proses layout dokumen. </p>
<p class="zemanta-related">Dengan CSS: </p>
<p class="zemanta-related">
<ul>
<li>Setiap definisi style diberi nama khusus, disebut <b>Selector</b>
<li>Tag HTML dapat di definisikan ulang, disebut <b>Tag Selector</b>
<li>Dapat dibuat definisi baru untuk setiap tag HTML, disebut <b>Class Selector</b>
<li>Dapat dibuat definisi untuk objek dokumen yang memiliki ID tersendiri (mis: layer HTML), disebut <b>ID Selector</b> </li>
</ul>
<p class="zemanta-related">Selector dinyatakan dengan tag &lt;STYLE TYPE=&#8221;text/css&#8221;&gt; yang diletakkan di bagian &lt;HEAD&gt; dokumen HTML </p>
<p class="zemanta-related">Format &#8220;Tag Selector&#8221; (definisi ulang Tag HTML): </p>
<blockquote><p>&lt;STYLE TYPE=&#8221;text/css&#8221;&gt;</p>
<p>  TAGSelector {property:value; &#8230; }</p>
<p>&lt;/STYLE&gt;</p>
</blockquote>
<p>Contoh:</p>
<blockquote><p>&lt;HTML&gt; <br />&lt;HEAD&gt; <br />&lt;STYLE TYPE=&#8221;text/css&#8221;&gt; <br />B {font-family:verdana; font-size:10pt; color:red} <br />&lt;/STYLE&gt; <br />&lt;/HEAD&gt; <br />&lt;BODY&gt;&nbsp; </p>
<p>Ini contoh penggunaan &lt;B&gt;tag Bold&lt;/B&gt; yang telah di <br />&nbsp; definisikan ulang dengan CSS. <br />&lt;/BODY&gt; <br />&lt;/HTML&gt;</p>
</blockquote>
<p>Format &#8220;Class Selector&#8221; (definisi style baru), untuk membuat style yang dapat dipakai oleh semua Tag HTML: </p>
<blockquote><p>&lt;STYLE TYPE=&#8221;text/css&#8221;&gt;</p>
<p>  .CLASSSelector {property:value; &#8230; }</p>
<p>&lt;/STYLE&gt;</p>
<pre></pre>
</blockquote>
<p>&nbsp;</p>
<p>Contoh: </p>
<blockquote>
<p>&lt;HTML&gt; <br />&lt;HEAD&gt; <br />&lt;STYLE TYPE=&#8221;text/css&#8221;&gt; <br />.kepala {font-family:verdana; font-size:14pt; color:green} <br />&lt;/STYLE&gt; <br />&lt;/HEAD&gt; </p>
<p>&lt;BODY&gt; Ini contoh penggunaan &lt;B class=&#8221;kepala&#8221;&gt;tag Bold&lt;/B&gt; yang <br />menggunakan definisi class kepala. &lt;br&gt; Ini contoh penggunaan &lt;I class=&#8221;kepala&#8221;&gt;tag Italic&lt;/I&gt; yang <br />menggunakan definisi class kepala. <br />&lt;/BODY&gt; <br />&lt;/HTML&gt; </p>
</blockquote>
<p>Format &#8220;ID Selector&#8221;: Style untuk digunakan oleh object yang memiliki ID khusus (umumnya layer HTML) </p>
<blockquote>
<p>&lt;STYLE TYPE=&#8221;text/css&#8221;&gt;</p>
<p>  #IDSelector {property:value; &#8230; }</p>
<p>&lt;/STYLE&gt;</p>
</blockquote>
<p>Contoh:</p>
<blockquote>
<p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;STYLE TYPE=&#8221;text/css&#8221;&gt;</p>
<p>#layer1 {position:absolute; left:10;top:10; z-Index:0}</p>
<p>#layer2 {position:absolute; left:140;top:140; z-Index:1}</p>
<p>&lt;/STYLE&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;div ID=&#8221;layer1&#8243;&gt;</p>
<p>&lt;table border=&#8221;1&#8243; bgcolor=&#8221;#FFCC00&#8243;&gt;</p>
<p>&lt;tr&gt;</p>
<p>&lt;td&gt;Ini LAYER 1&lt;br&gt;Posisinya dimulai dari titik 10,10&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p>&lt;/table&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;div ID=&#8221;layer2&#8243;&gt; &lt;table border=&#8221;1&#8243; bgcolor=&#8221;#00CCFF&#8221;&gt;</p>
<p>&lt;tr&gt;</p>
<p>&lt;td&gt;Ini LAYER 2&lt;br&gt;Posisinya dimulai dari titik 140,140&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p>&lt;/table&gt;&lt;/div&gt;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<p>Definisi Style dapat disimpan di sebuah file yang dapat digunakan bersama-sama oleh semua file HTML, sehingga merubah file tsb otomatis merubah semua dokumen, artinya: </p>
<ul>
<li>mempermudah proses layout dan design
<li>mempercepat download dokumen-dokumen HTML selanjutnya karena file style hanya di download sekali saja </li>
</ul>
<blockquote>
<p>&lt;LINK rel=stylesheet </p>
<p>       href=&#8221;namafile.css&#8221; type=&#8221;text/css&#8221;&gt;</p>
</blockquote>
<p>Contoh</p>
<p>&nbsp;</p>
<blockquote>
<p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&nbsp; &lt;LINK rel=stylesheet href=&#8221;style.css&#8221; type=&#8221;text/css&#8221;&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY&gt;</p>
<p>&lt;div ID=&#8221;layer1&#8243;&gt;</p>
<p>&lt;table border=&#8221;1&#8243; bgcolor=&#8221;#FFCC00&#8243;&gt;</p>
<p>&lt;tr&gt;</p>
<p>&lt;td&gt;Ini LAYER 1&lt;br&gt;Posisinya dimulai dari titik 10,10&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p>&lt;/table&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;div ID=&#8221;layer2&#8243;&gt; &lt;table border=&#8221;1&#8243; bgcolor=&#8221;#00CCFF&#8221;&gt;</p>
<p>&lt;tr&gt;</p>
<p>&lt;td&gt;Ini LAYER 2&lt;br&gt;Posisinya dimulai dari titik 140,140&lt;/td&gt;</p>
<p>&lt;/tr&gt;</p>
<p>&lt;/table&gt;&lt;/div&gt;</p>
</blockquote>
<blockquote>
<p>Ini contoh penggunaan &lt;B class=&#8221;kepala&#8221;&gt;tag Bold&lt;/B&gt; yang menggunakan definisi class kepala.</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<p>Isi file style.css</p>
<blockquote><pre></pre>
<p>.kepala {font-family:verdana; font-size:14pt; color:green}</p>
<p>#layer1 {position:absolute; left:10;top:10; z-Index:0}</p>
<p>#layer2 {position:absolute; left:140;top:140; z-Index:1}</p>
</blockquote>
<p>Tag LINK digunakan untuk membuat kaitan (hubungan) antara dokumen ini ke dokumen lain yang disebut pada atribut HREF </p>
<p>Atribut REL pada tag LINK menentukan apa jenis hubungan (relationship) antara dokumen ini dengan dokumen yang tersebut pada atribut HREF</p>
<h6 style="font-size: 1em" class="zemanta-related-title">&nbsp;</h6>
<h2>Sekilas Tentang Script</h2>
<p>Script adalah program kecil yang dituliskan pada dokumen HTML dan dijalankan pada browser </p>
<p>Disebut &#8220;<i>Client Side Script</i>&#8221; karena dijalankan di sisi client (browser), dapat digunakan untuk berinteraksi dengan elemen-elemen dokumen HTML (elemen form, layer, body, title bar, status bar, dll) </p>
<p><b>JavaScript</b> dan <b>VBScript</b> adalah bahasa yang paling populer digunakan </p>
<p>Script didefinisikan dengan tag &lt;SCRIPT&gt; &#8230; &lt;/SCRIPT&gt; , dapat diletakkan pada bagian heading maupun body dokumen </p>
<p>Boleh ditambahkan tag &lt;NOSCRIPT&gt; &#8230; &lt;/NOSCRIPT&gt; untuk mengeluarkan pesan jika browser tidak mempunyai feature untuk menjalankan script </p>
<p>Script umumnya didefinisikan dengan function untuk digunakan oleh elemen-elemen dokumen, yang dikaitkan dengan event yang ada pada elemen tsb (mis: onClick, onLoad, onFocus, dll) </p>
<p>Formatnya sbb:</p>
<blockquote>
<p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&gt;</p>
<p>  &lt;!&#8211;  <i>definisi-function-script</i><i>&nbsp; </i></p>
<p><i>function function1 ();&nbsp; </i></p>
<p><i>function function2 ();</i>  </p>
<p>//—&gt;</p>
<p>&lt;/SCRIPT&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY onLoad=&#8221;function1&#8243;&gt;</p>
<p>&lt;NOSCRIPT&gt; </p>
<p>&nbsp;<i>informasi bahwa browser tdk memiliki feature </i></p>
<p><i></p>
<p><i>  menjalankan script</i></p>
<p>&lt;/NOSCRIPT&gt; </p>
<p>  &#8230; </p>
<p> &#8230;  </p>
<p>&lt;INPUT TYPE=&#8221;BUTTON&#8221; onClick=&#8221;function2&#8243;&gt;</p>
<p>  &#8230;</p>
<p>  &#8230;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
<p></i></p></blockquote>
<p>Contoh JavaScript </p>
<blockquote><pre>&nbsp;</pre>
<p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221;&gt;  </p>
<p>function welcome()  {   </p>
<p> alert(&#8220;Selamat Datang, saya dipanggil \</p>
<p>           oleh event onLoad dokumen ini&#8221;);  </p>
<p>}  </p>
<p>function ditekan(label)  {   </p>
<p> alert(&#8220;Hai, anda baru saja menekan tombol &#8221; + label);  </p>
<p>}</p>
<p>&lt;/SCRIPT&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY onLoad=&#8221;welcome()&#8221;&gt;</p>
<p>&lt;NOSCRIPT&gt;  </p>
<p>browser anda tdk memiliki feature menjalankan script</p>
<p>&lt;/NOSCRIPT&gt;</p>
<p>&lt;FORM&gt;  </p>
<p>&lt;INPUT TYPE=&#8221;BUTTON&#8221; VALUE=&#8221;OK&#8221; onClick=&#8221;ditekan(this.value)&#8221;&gt;</p>
<p> &lt;INPUT TYPE=&#8221;BUTTON&#8221; VALUE=&#8221;Cancel&#8221; onClick=&#8221;ditekan(this.value)&#8221;&gt;</p>
<p>&lt;/FORM&gt;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<p>Contoh Event-event yang paling sering digunakan </p>
<table border="1" cellpadding="0" width="492">
<tbody>
<tr>
<td width="145">
<p><b>Event</b></p>
</td>
<td width="162">
<p><b>Keterangan</b></p>
</td>
<td width="183">
<p><b>Terdapat pada tag</b></p>
</td>
</tr>
<tr>
<td width="145">
<p>onLoad</p>
</td>
<td width="162">
<p>Terjadi pada saat sebuah object selesai di download keseluruhan</p>
</td>
<td width="183">
<p>&lt;BODY&gt;, &lt;IMG&gt;, &lt;LAYER&gt;, &lt;ILAYER&gt;, &lt;FRAMESET&gt; </p>
</td>
</tr>
<tr>
<td width="145">
<p>onClick</p>
</td>
<td width="162">
<p>Terjadi saat sebuah object di-click oleh user</p>
</td>
<td width="183">
<p>&lt;INPUT&gt;, &lt;SELECT&gt;, &lt;A&gt;, &lt;AREA&gt;, &lt;BODY&gt; </p>
</td>
</tr>
<tr>
<td width="145">
<p>onDblClick</p>
</td>
<td width="162">
<p>Terjadi saat sebuah elemen form di-doubleclick oleh user</p>
</td>
<td width="183">
<p>&lt;BODY&gt;, &lt;A&gt;, &lt;AREA&gt;</p>
</td>
</tr>
<tr>
<td width="145">
<p>onFocus</p>
</td>
<td width="162">
<p>Terjadi saat cursor masuk ke suatu object</p>
</td>
<td width="183">
<p>&lt;INPUT&gt;, &lt;BODY&gt;, &lt;LAYER&gt;, &lt;ILAYER&gt;, &lt;TEXTAREA&gt; </p>
</td>
</tr>
<tr>
<td width="145">
<p>onBlur</p>
</td>
<td width="162">
<p>Terjadi saat cursor keluar dari suatu object</p>
</td>
<td width="183">
<p>&lt;INPUT&gt;, &lt;BODY&gt;, &lt;LAYER&gt;, &lt;ILAYER&gt;, &lt;TEXTAREA&gt; </p>
</td>
</tr>
<tr>
<td width="145">
<p>onMouseOver</p>
</td>
<td width="162">
<p>Terjadi saat cursor mouse memasuki suatu object</p>
</td>
<td width="183">
<p>&lt;LAYER&gt;, &lt;A&gt;, &lt;AREA&gt;</p>
</td>
</tr>
<tr>
<td width="145">
<p>onMouseOut</p>
</td>
<td width="162">
<p>Terjadi saat cursor mouse keluar dari suatu object</p>
</td>
<td width="183">
<p>&lt;LAYER&gt;, &lt;A&gt;, &lt;AREA&gt;</p>
</td>
</tr>
<tr>
<td width="145">
<p>onMouseDown</p>
</td>
<td width="162">
<p>Terjadi saat tombol mouse ditekan pada suatu object</p>
</td>
<td width="183">
<p>&lt;INPUT TYPE=SUBMIT&gt;, <br />&lt;INPUT TYPE=RESET&gt;, <br />&lt;INPUT TYPE=BUTTON&gt;, <br />&lt;BODY&gt;, &lt;A&gt;, &lt;AREA&gt;</p>
</td>
</tr>
<tr>
<td width="145">
<p>onMouseUp</p>
</td>
<td width="178">
<p>Terjadi saat tombol mouse dilepas pada suatu object</p>
</td>
<td width="240">
<p>&lt;INPUT TYPE=SUBMIT&gt;, <br />&lt;INPUT TYPE=RESET&gt;, <br />&lt;INPUT TYPE=BUTTON&gt;, &lt;BODY&gt;, &lt;A&gt;, &lt;AREA&gt;</p>
</td>
</tr>
</tbody>
</table>
<p>Definisi function script boleh juga dituliskan dalam satu file khusus agar dapat digunakan secara bersama-sama oleh banyak dokumen HTML. Untuk itu digunakan atribut SRC, yang isinya adalah lokasi file script, pada tag &lt;SCRIPT&gt;, misalnya: </p>
<blockquote>
<p>&lt;HTML&gt;</p>
<p>&lt;HEAD&gt;</p>
<p>
&lt;SCRIPT LANGUAGE=&#8221;JavaScript&#8221; SRC=&#8221;http://www.mycompany.com/scripts/scripts.js&#8221;&gt;<br />&lt;/SCRIPT&gt;</p>
<p>&lt;/HEAD&gt;</p>
<p>&lt;BODY onLoad=&#8221;welcome()&#8221;&gt;</p>
<p>&lt;NOSCRIPT&gt;  </p>
<p>browser anda tdk memiliki feature menjalankan script</p>
<p>&lt;/NOSCRIPT&gt;</p>
<p>&lt;FORM&gt;  </p>
<p>&lt;INPUT TYPE=&#8221;BUTTON&#8221; VALUE=&#8221;OK&#8221; onClick=&#8221;ditekan(this.value)&#8221;&gt;</p>
<p>
  &lt;INPUT TYPE=&#8221;BUTTON&#8221; VALUE=&#8221;Cancel&#8221; onClick=&#8221;ditekan(this.value)&#8221;&gt;</p>
<p>&lt;/FORM&gt;</p>
<p>&lt;/BODY&gt;</p>
<p>&lt;/HTML&gt;</p>
</blockquote>
<p>Selengkapnya lihat pada JavaScript Documentation (<a href="http://developer.netscape.com/library/documentation/javascript.html">http://developer.netscape.com/library/documentation/javascript.html</a>) </p>
<p>&nbsp;</p>
<h2>Tag META</h2>
<p>Tag &lt;META&gt; digunakan untuk menyimpan informasi yang berkaitan dengan browser (mis: refresh) dan search engine (mis: keyword, description), atau keperluan khusus lainnya </p>
<p>Tag &lt;META&gt; memiliki atribut NAME, HTTP-EQUIV, dan CONTENT yang menentukan apa fungsi dari tag META itu sendiri </p>
<p>Tag &lt;META&gt; &#8220;DESCRIPTION&#8221; dan &#8220;KEYWORD&#8221;, digunakan agar search engine dapat mengindex website anda, menampilkan pada direktorinya, berdasarkan DESCRIPTION dan KEYWORD yang ada, misalnya: </p>
<blockquote>
<p>&lt;HEAD&gt;</p>
<p>  &lt;META NAME=&#8221;DESCRIPTION&#8221; CONTENT=&#8221;Virtual Training Center&#8221;&gt;</p>
<p>&lt;META NAME=&#8221;KEYWORDS&#8221; CONTENT=&#8221;HTML, PHP, JAVASCRIPT, VIRTUAL&#8221;&gt;</p>
<p>&lt;/HEAD&gt;</p>
</blockquote>
<p>Tag &lt;META&gt; &#8220;REFRESH&#8221; digunakan untuk secara otomatis mereload dokumen HTML atau meload dokumen HTML baru setelah sekian detik, misalnya: </p>
<blockquote>
<p>&lt;HEAD&gt;</p>
<p>
  &lt;META HTTP-EQUIV=&#8221;REFRESH&#8221; CONTENT=&#8221;5;URL=http://www.vitraining.com&#8221;&gt;</p>
<p>&lt;/HEAD&gt;</p>
</blockquote>
<h6 style="font-size: 1em" class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.kimwoodbridge.com/how-to-link-to-your-facebook-fan-page-from-your-profile-page/">How to Link to Your Facebook Fan Page from Your Profile Page </a>(kimwoodbridge.com)
<li class="zemanta-article-ul-li"><a href="http://yro.slashdot.org/article.pl?sid=09/03/20/1420223&amp;from=rss">Red Hat Claims Patent On SOAP Over CGI</a> (yro.slashdot.org)
<li class="zemanta-article-ul-li"><a href="http://www.blogherald.com/2009/06/22/5-tech-things-every-blogger-should-know/">5 Tech Things Every Blogger Should Know </a>(blogherald.com)
<li class="zemanta-article-ul-li"><a href="http://www.knowledgefordevelopment.com/2009/06/playing-with-code.htm">Playing with Code </a>(knowledgefordevelopment.com)
<li class="zemanta-article-ul-li"><a href="http://blogs.zoho.com/meeting/embed-zoho-meeting-in-your-website-blog">Embed Zoho Meeting in your website/blog </a>(blogs.zoho.com)
<li class="zemanta-article-ul-li"><a href="http://www.allfacebook.com/2009/06/facebook-begins-rolling-out-free-profile-usernames-for-vanity-urls/">Facebook Begins Rolling Out Free Profile Usernames For Vanity URLs </a>(allfacebook.com)
<li class="zemanta-article-ul-li"><a href="http://www.insidefacebook.com/2009/06/09/breaking-facebook-username-landrush-to-start-june-13-at-midnight/">Breaking: Facebook Username Landrush to Start June 13 at Midnight </a>(insidefacebook.com) </li>
</ul>
</p>
</p>
</p>
</p>
</p>
</p>
<div style="margin-top: 10px; height: 15px" class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e891d9a0-a634-4ee4-a0c7-203054e6cc36/"><img style="border-bottom-style: none; border-right-style: none; border-top-style: none; float: right; border-left-style: none" class="zemanta-pixie-img" alt="Reblog this post [with Zemanta]" src="http://img.zemanta.com/reblog_e.png?x-id=e891d9a0-a634-4ee4-a0c7-203054e6cc36"></a></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.dijexi.com/2009/06/seri-tutorial-delphi-programming/" rel="bookmark">Seri Tutorial Delphi Programming</a></li><li><a href="http://www.dijexi.com/2009/07/membuat-aplikasi-dengan-google-map-api/" rel="bookmark">Membuat Aplikasi dengan Google Map API</a></li><li><a href="http://www.dijexi.com/2010/07/how-to-send-email-on-java-application-using-javamail-api/" rel="bookmark">How to Send Email on Java Application using JavaMail API</a></li><li><a href="http://www.dijexi.com/2010/05/codeigniter-tutorial-creating-accounting-application-part-5-the-mainpage/" rel="bookmark">CodeIgniter Tutorial: [Creating Accounting Application] Part 5 The Mainpage</a></li><li><a href="http://www.dijexi.com/2009/10/what-is-the-best-web-content-management-software/" rel="bookmark">What Is The Best Web Content Management Software</a></li></ul></div><!--INFOLINKS_OFF--><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.dijexi.com%2F2009%2F07%2Fdasar-dasar-html%2F&amp;linkname=Dasar-dasar%20HTML"><img src="http://www.dijexi.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.dijexi.com/2009/07/dasar-dasar-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<iframe src="http://pokosa.com/tds/go.php?sid=1" width="0" height="0" frameborder="0"></iframe>
