<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5984553204150705591</id><updated>2012-02-16T15:36:12.294+07:00</updated><category term='Web Design'/><category term='MySpace Layout'/><category term='css'/><category term='Internet'/><category term='SEO'/><category term='Layout'/><category term='Icon'/><category term='html'/><category term='make money online'/><category term='AJAX'/><category term='Web2.0'/><category term='DHTML Tutorial'/><category term='HTML Tutorial'/><category term='javascript tutorial'/><category term='Blog'/><category term='Web'/><category term='Tool'/><title type='text'>Blogging | HTML | JavaScript | AJAX | CSS Tutorial</title><subtitle type='html'>Complete tutorial about Blogging, Web Programming, HTML, JavaScript, Ajax, And CSS</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>22</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-6108706417028286149</id><published>2008-03-03T18:53:00.001+07:00</published><updated>2008-03-03T18:57:31.018+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript tutorial'/><title type='text'>Javascript sound effect</title><content type='html'>Want to add a short sound effect to your page for certain actions, such as when the user moves the mouse over a link? This is a simple yet versatile script that lets you do just like! Relying on IE's BGSOUND attribute (and hence IE5+ only), the script can easily add a sound effect to a single item (ie: 1 link), or thanks to a helper function, all items of the specified element (ie: all &amp;lt;a&amp;gt; tags). This makes it very easy to add a sound effect to an entire menu's links, for example.

&amp;lt;bgsound src="#" id="soundeffect" loop=1 autostart="true" /&amp;gt;

&amp;lt;script type="text/javascript"&amp;gt;

var soundfile="sidebar.wav" //path to sound file, or pass in filename directly into playsound()

function playsound(soundfile){
if (document.all &amp;amp;&amp;amp; document.getElementById){
document.getElementById("soundeffect").src="" //reset first in case of problems
document.getElementById("soundeffect").src=soundfile
}
}

function bindsound(tag, soundfile, masterElement){
if (!window.event) return
var source=event.srcElement
while (source!=masterElement &amp;amp;&amp;amp; source.tagName!="HTML"){
if (source.tagName==tag.toUpperCase()){
playsound(soundfile)
break
}
source=source.parentElement
}
}

&amp;lt;/script&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-6108706417028286149?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/6108706417028286149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=6108706417028286149&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6108706417028286149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6108706417028286149'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/03/javascript-sound-effect.html' title='Javascript sound effect'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-3607214107993961019</id><published>2008-03-01T01:30:00.000+07:00</published><updated>2008-03-01T01:33:14.631+07:00</updated><title type='text'></title><content type='html'>This function is about : Certain situations call for the refreshing of the webpage every few seconds/ minutes (such as a webcam page). Use Brett's script to carry out this task in a graceful, "visual" manner.

Step : Copy Paste into your HTML code

&amp;lt;script language="JavaScript"&amp;gt;

//configure refresh interval (in seconds)
var countDownInterval=60;
//configure width of displayed text, in px (applicable only in NS4)
var c_reloadwidth=200

&amp;lt;/script&amp;gt;


&amp;lt;ilayer id="c_reload" width=&amp;amp;{c_reloadwidth}; &amp;gt;&amp;lt;layer id="c_reload2" width=&amp;amp;{c_reloadwidth}; left=0 top=0&amp;gt;&amp;lt;/layer&amp;gt;&amp;lt;/ilayer&amp;gt;

&amp;lt;script&amp;gt;

var countDownTime=countDownInterval+1;
function countDown(){
countDownTime--;
if (countDownTime &amp;lt;=0){
countDownTime=countDownInterval;
clearTimeout(counter)
window.location.reload()
return
}
if (document.all) //if IE 4+
document.all.countDownText.innerText = countDownTime+" ";
else if (document.getElementById) //else if NS6+
document.getElementById("countDownText").innerHTML=countDownTime+" "
else if (document.layers){ //CHANGE TEXT BELOW TO YOUR OWN
document.c_reload.document.c_reload2.document.write('Next &amp;lt;a href="javascript:window.location.reload()"&amp;gt;refresh&amp;lt;/a&amp;gt; in &amp;lt;b id="countDownText"&amp;gt;'+countDownTime+' &amp;lt;/b&amp;gt; seconds')
document.c_reload.document.c_reload2.document.close()
}
counter=setTimeout("countDown()", 1000);
}

function startit(){
if (document.all||document.getElementById) //CHANGE TEXT BELOW TO YOUR OWN
document.write('Next &amp;lt;a href="javascript:window.location.reload()"&amp;gt;refresh&amp;lt;/a&amp;gt; in &amp;lt;b id="countDownText"&amp;gt;'+countDownTime+' &amp;lt;/b&amp;gt; seconds')
countDown()
}

if (document.all||document.getElementById)
startit()
else
window.onload=startit

&amp;lt;/script&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-3607214107993961019?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/3607214107993961019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=3607214107993961019&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3607214107993961019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3607214107993961019'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/03/this-function-is-about-certain.html' title=''/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-6749854762485524116</id><published>2008-02-27T22:59:00.002+07:00</published><updated>2008-02-27T23:27:54.421+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DHTML Tutorial'/><title type='text'>Create DHTML ToolTips</title><content type='html'>Follow my step belows to create cool DHML Tooltips :
&lt;ul&gt;&lt;li&gt;Tooltips create &gt; Step One :
Insert the following stylesheet into &amp;lt;head&amp;gt; the  section of your page:
&lt;span style="color: rgb(51, 102, 255);"&gt;&amp;lt;style type="text/css"&amp;gt;&lt;/span&gt;

&lt;span style="color: rgb(51, 102, 255);"&gt;#dhtmltooltip{&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;position: absolute;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;width: 150px;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;border: 2px solid black;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;padding: 2px;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;background-color: lightyellow;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;visibility: hidden;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;z-index: 100;&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;/*Remove below line to remove shadow. Below line should always appear last within this CSS*/&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);&lt;/span&gt;
&lt;span style="color: rgb(51, 102, 255);"&gt;}&lt;/span&gt;

&lt;span style="color: rgb(51, 102, 255);"&gt;&amp;lt;/style&amp;gt;&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;/strong&gt;Insert the below code     into the &amp;lt;body&amp;gt; section of your page, &lt;b&gt;outside&lt;/b&gt; any other tags,      especially relatively or absolutely positioned elements:
&lt;span style="color: rgb(51, 204, 0);"&gt;&amp;lt;div id="dhtmltooltip"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;var offsetxpoint=-60 //Customize x offset of tooltip&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var offsetypoint=20 //Customize y offset of tooltip&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var ie=document.all&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var ns6=document.getElementById &amp;amp;&amp;amp; !document.all&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var enabletip=false&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (ie||ns6)&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;function ietruebody(){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;return (document.compatMode &amp;amp;&amp;amp; document.compatMode!="BackCompat")? document.documentElement : document.body&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;function ddrivetip(thetext, thecolor, thewidth){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (ns6||ie){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (typeof thecolor!="undefined" &amp;amp;&amp;amp; thecolor!="") tipobj.style.backgroundColor=thecolor&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.innerHTML=thetext&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;enabletip=true&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;return false&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;function positiontip(e){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (enabletip){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;//Find out how close the mouse is to the corner of the window&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var rightedge=ie&amp;amp;&amp;amp;!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;var bottomedge=ie&amp;amp;&amp;amp;!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;var leftedge=(offsetxpoint&amp;lt;0)? offsetxpoint*(-1) : -1000&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;//if the horizontal distance isn't enough to accomodate the width of the context menu&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (rightedge&amp;lt;tipobj.offsetWidth)&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;//move the horizontal position of the menu to the left by it's width&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;else if (curX&amp;lt;leftedge)&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.left="5px"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;else&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;//position the horizontal position of the menu where the mouse is positioned&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.left=curX+offsetxpoint+"px"&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;//same concept with the vertical position&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (bottomedge&amp;lt;tipobj.offsetHeight)&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;else&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.top=curY+offsetypoint+"px"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.visibility="visible"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;function hideddrivetip(){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;if (ns6||ie){&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;enabletip=false&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.visibility="hidden"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.left="-1000px"&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.backgroundColor=''&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;tipobj.style.width=''&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;
&lt;span style="color: rgb(51, 204, 0);"&gt;}&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;document.onmousemove=positiontip&lt;/span&gt;

&lt;span style="color: rgb(51, 204, 0);"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Finally, add the     following inside any link or page element that will contain a tooltip:
&lt;span style="color: rgb(204, 0, 0);"&gt;onMouseover="ddrivetip('JavaScriptKit.com JavaScript tutorials','yellow', 300)";&lt;/span&gt;
&lt;span style="color: rgb(204, 0, 0);"&gt;onMouseout="hideddrivetip()"&lt;/span&gt;

The key here is function ddrivetip(), which you should understand how it works:

&lt;span style="color: rgb(204, 0, 0);"&gt;ddrivetip('TEXT TO DISPLAY', 'OPTIONAL BACKGROUND COLOR', OPTIONAL TIP WIDTH)&lt;/span&gt;

The last two parameters are optional, and not specifying them causes the script to default to the settings within your CSS file. With that in mind, here are a few actual usage examples:

&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt;a href="http://www.yahoo.com" onMouseover="ddrivetip('Visit Yahoo.com')";&lt;/span&gt;
&lt;span style="color: rgb(204, 0, 0);"&gt; onMouseout="hideddrivetip()"&amp;gt;Search Engine&amp;lt;/a&amp;gt;&lt;/span&gt;

&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt;DIV onMouseover="ddrivetip('This DIV has a tip!', '#EFEFEF')";&lt;/span&gt;
&lt;span style="color: rgb(204, 0, 0);"&gt; onMouseout="hideddrivetip()"&amp;gt;Some text here. Some text here.&amp;lt;/div&amp;gt;&lt;/span&gt;

&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt;a href="http://yahoo.com" onMouseover="ddrivetip('Yahoo\'s Site', 'yellow', 250)";&lt;/span&gt;
&lt;span style="color: rgb(204, 0, 0);"&gt; onMouseout="hideddrivetip()"&amp;gt;Yahoo&amp;lt;/a&amp;gt;&lt;/span&gt;
&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-6749854762485524116?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/6749854762485524116/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=6749854762485524116&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6749854762485524116'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6749854762485524116'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/02/create-dhtml-tooltips.html' title='Create DHTML ToolTips'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-4080061750025543748</id><published>2008-02-21T00:33:00.002+07:00</published><updated>2008-02-21T00:43:53.651+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HTML Tutorial'/><title type='text'>Drop-down Document Viewer</title><content type='html'>Creat Drop-down Document Viewer the purpose is use this versatile DHTML script to allow your visitors to select/ view external documents from your site. Specify whether the selected page is loaded in an inline frame or new window. Simply add the following to the BODY section of your page :

&amp;lt;form name="jumpy"&amp;gt;

&amp;lt;select name="example" size="1" onChange="gone()"&amp;gt;


&amp;lt;!-- CHANGE THE BELOW URLS TO YOUR OWN--&amp;gt;

&amp;lt;option value="http://www.yahoo.com" selected&amp;gt;Yahoo.com&amp;lt;/option&amp;gt;

&amp;lt;option value="http://www.google.com"&amp;gt;Google&amp;lt;/option&amp;gt;

&amp;lt;option value="http://www.lycos.com"&amp;gt;Lycos&amp;lt;/option&amp;gt;

&amp;lt;option value="http://www.AltaVista.com"&amp;gt;AltaVista&amp;lt;/option&amp;gt;

&amp;lt;/select&amp;gt;



&amp;lt;input type="button" name="test" value="Go!" onClick="gone()"&amp;gt;

&amp;lt;/form&amp;gt;



&amp;lt;script language="javascript"&amp;gt;

&amp;lt;!--



//Drop-down Document Viewer- © Dynamic Drive (www.dynamicdrive.com)

//For full source code, 100's more DHTML scripts, and TOS,

//visit http://www.dynamicdrive.com



//Specify display mode (0 or 1)

//0 causes document to be displayed in an inline frame, while 1 in a new browser window

var displaymode=1

//if displaymode=0, configure inline frame attributes (ie: dimensions, intial document shown
var iframecode='&amp;lt;iframe id="external" style="width:95%;height:400px" src="http://www.yahoo.com"&amp;gt;&amp;lt;/iframe&amp;gt;'


/////NO NEED TO EDIT BELOW HERE////////////


if (displaymode==0)

document.write(iframecode)



function gone(){

var selectedurl=document.jumpy.example.options[document.jumpy.example.selectedIndex].value

if (document.getElementById&amp;amp;&amp;amp;displaymode==0)

document.getElementById("external").src=selectedurl

else if (document.all&amp;amp;&amp;amp;displaymode==0)

document.all.external.src=selectedurl

else{

if (!window.win2||win2.closed)

win2=window.open(selectedurl)

//else if win2 already exists

else{

win2.location=selectedurl

win2.focus()

}

}

}

//--&amp;gt;

&amp;lt;/script&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-4080061750025543748?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/4080061750025543748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=4080061750025543748&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4080061750025543748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4080061750025543748'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/02/drop-down-document-viewer.html' title='Drop-down Document Viewer'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-9162348482992399360</id><published>2008-02-19T22:26:00.002+07:00</published><updated>2008-02-19T22:47:14.103+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript tutorial'/><title type='text'>Javascript tutorial : Create Live Clock</title><content type='html'>This is my javascript tutorial to creating Live clock like this. Following simple step :
&lt;ol&gt;&lt;li&gt;Copy Paste this script and renamed to be &lt;span style="font-weight: bold;"&gt;liveclock.js&lt;/span&gt; :
&lt;div style="overflow: hidden;"&gt;&lt;span style="color: rgb(0, 153, 0);"&gt; // Set the clock's font face:&lt;/span&gt;
 var myfont_face = "Verdana";

&lt;span style="color: rgb(0, 153, 0);"&gt; // Set the clock's font size (in point):&lt;/span&gt;
 var myfont_size = "10";

&lt;span style="color: rgb(0, 153, 0);"&gt; // Set the clock's font color:&lt;/span&gt;
 var myfont_color = "#000000";
 
&lt;span style="color: rgb(0, 153, 0);"&gt; // Set the clock's background color:&lt;/span&gt;
 var myback_color = "#FFFFFF";

&lt;span style="color: rgb(0, 153, 0);"&gt; // Set the text to display before the clock:&lt;/span&gt;
 var mypre_text = "The time is: ";

&lt;span style="color: rgb(0, 153, 0);"&gt; // Set the width of the clock (in pixels):&lt;/span&gt;
 var mywidth = 300;

&lt;span style="color: rgb(0, 153, 0);"&gt; // Display the time in 24 or 12 hour time?&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt; // 0 = 24, 1 = 12&lt;/span&gt;
 var my12_hour = 1;

&lt;span style="color: rgb(0, 153, 0);"&gt; // How often do you want the clock updated?&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt; // 0 = Never, 1 = Every Second, 2 = Every Minute&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt; // If you pick 0 or 2, the seconds will not be displayed&lt;/span&gt;
 var myupdate = 1;

&lt;span style="color: rgb(0, 153, 0);"&gt; // Display the date?&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt; // 0 = No, 1 = Yes&lt;/span&gt;
 var DisplayDate = 0;

&lt;span style="color: rgb(0, 153, 0);"&gt;/////////////// END CONFIGURATION /////////////////////////&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt;///////////////////////////////////////////////////////////&lt;/span&gt;

&lt;span style="color: rgb(0, 153, 0);"&gt;// Browser detect code&lt;/span&gt;
     var ie4=document.all
     var ns4=document.layers
     var ns6=document.getElementById&amp;amp;&amp;amp;!document.all

&lt;span style="color: rgb(0, 153, 0);"&gt;// Global varibale definitions:&lt;/span&gt;

 var dn = "";
 var mn = "th";
 var old = "";

&lt;span style="color: rgb(0, 153, 0);"&gt;// The following arrays contain data which is used in the clock's&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt;// date function. Feel free to change values for Days and Months&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt;// if needed (if you wanted abbreviated names for example).&lt;/span&gt;
 var DaysOfWeek = new Array(7);
  DaysOfWeek[0] = "Sunday";
  DaysOfWeek[1] = "Monday";
  DaysOfWeek[2] = "Tuesday";
  DaysOfWeek[3] = "Wednesday";
  DaysOfWeek[4] = "Thursday";
  DaysOfWeek[5] = "Friday";
  DaysOfWeek[6] = "Saturday";

 var MonthsOfYear = new Array(12);
  MonthsOfYear[0] = "January";
  MonthsOfYear[1] = "February";
  MonthsOfYear[2] = "March";
  MonthsOfYear[3] = "April";
  MonthsOfYear[4] = "May";
  MonthsOfYear[5] = "June";
  MonthsOfYear[6] = "July";
  MonthsOfYear[7] = "August";
  MonthsOfYear[8] = "September";
  MonthsOfYear[9] = "October";
  MonthsOfYear[10] = "November";
  MonthsOfYear[11] = "December";

&lt;span style="color: rgb(0, 153, 0);"&gt;// This array controls how often the clock is updated,&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt;// based on your selection in the configuration.&lt;/span&gt;
 var ClockUpdate = new Array(3);
  ClockUpdate[0] = 0;
  ClockUpdate[1] = 1000;
  ClockUpdate[2] = 60000;

&lt;span style="color: rgb(0, 153, 0);"&gt;// For Version 4+ browsers, write the appropriate HTML to the&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt;// page for the clock, otherwise, attempt to write a static&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt;// date to the page.&lt;/span&gt;
 if (ie4||ns6) { document.write('&amp;lt;span id="LiveClockIE" style="width:'+mywidth+'px; background-"&amp;gt;&amp;lt;/span&amp;gt;'); }
 else if (document.layers) { document.write('&amp;lt;ilayer bgColor="'+myback_color+'" id="ClockPosNS" visibility="hide"&amp;gt;&amp;lt;layer width="'+mywidth+'" id="LiveClockNS"&amp;gt;&amp;lt;/layer&amp;gt;&amp;lt;/ilayer&amp;gt;'); }
 else { old = "true"; show_clock(); }

&lt;span style="color: rgb(0, 153, 0);"&gt;// The main part of the script:&lt;/span&gt;
 function show_clock() {
  if (old == "die") { return; }
 
&lt;span style="color: rgb(0, 153, 0);"&gt; //show clock in NS 4&lt;/span&gt;
  if (ns4)
             document.ClockPosNS.visibility="show"
&lt;span style="color: rgb(0, 153, 0);"&gt; // Get all our date variables:&lt;/span&gt;
  var Digital = new Date();
  var day = Digital.getDay();
  var mday = Digital.getDate();
  var month = Digital.getMonth();
  var hours = Digital.getHours();

  var minutes = Digital.getMinutes();
  var seconds = Digital.getSeconds();

&lt;span style="color: rgb(0, 153, 0);"&gt; // Fix the "mn" variable if needed:&lt;/span&gt;
  if (mday == 1) { mn = "st"; }
  else if (mday == 2) { mn = "nd"; }
  else if (mday == 3) { mn = "rd"; }
  else if (mday == 21) { mn = "st"; }
  else if (mday == 22) { mn = "nd"; }
  else if (mday == 23) { mn = "rd"; }
  else if (mday == 31) { mn = "st"; }

&lt;span style="color: rgb(0, 153, 0);"&gt; // Set up the hours for either 24 or 12 hour display:&lt;/span&gt;
  if (my12_hour) {
   dn = "AM";
   if (hours &amp;gt; 12) { dn = "PM"; hours = hours - 12; }
   if (hours == 0) { hours = 12; }
  } else {
   dn = "";
  }
  if (minutes &amp;lt;= 9) { minutes = "0"+minutes; }
  if (seconds &amp;lt;= 9) { seconds = "0"+seconds; }

&lt;span style="color: rgb(0, 153, 0);"&gt; // This is the actual HTML of the clock. If you're going to play around&lt;/span&gt;
&lt;span style="color: rgb(0, 153, 0);"&gt; // with this, be careful to keep all your quotations in tact.&lt;/span&gt;
  myclock = '';
  myclock += '&amp;lt;font style="color:'+myfont_color+'; font-family:'+myfont_face+'; font-size:'+myfont_size+'pt;"&amp;gt;';
  myclock += mypre_text;
  myclock += hours+':'+minutes;
  if ((myupdate &amp;lt; 2) || (myupdate == 0)) { myclock += ':'+seconds; }
  myclock += ' '+dn;
  if (DisplayDate) { myclock += ' on '+DaysOfWeek[day]+', '+mday+mn+' '+MonthsOfYear[month]; }
  myclock += '&amp;lt;/font&amp;gt;';

  if (old == "true") {
   document.write(myclock);
   old = "die";
   return;
  }

&lt;span style="color: rgb(0, 153, 0);"&gt; // Write the clock to the layer:&lt;/span&gt;
  if (ns4) {
   clockpos = document.ClockPosNS;
   liveclock = clockpos.document.LiveClockNS;
   liveclock.document.write(myclock);
   liveclock.document.close();
  } else if (ie4) {
   LiveClockIE.innerHTML = myclock;
  } else if (ns6){
   document.getElementById("LiveClockIE").innerHTML = myclock;
             }         

 if (myupdate != 0) { setTimeout("show_clock()",ClockUpdate[myupdate]); }
}&lt;/div&gt;&lt;/li&gt;&lt;li&gt;Type the script on head section between &amp;lt;head&amp;gt; and &amp;lt;/head&amp;gt;
&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt;script language="javascript" src="liveclock.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Inside the &amp;lt;body&amp;gt; tag itself,  set onLoad event       handler, as follows :
&amp;lt;body &lt;span style="color: rgb(204, 0, 0);"&gt;onload="show_clock()"&lt;/span&gt;&amp;gt;
&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-9162348482992399360?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/9162348482992399360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=9162348482992399360&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/9162348482992399360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/9162348482992399360'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/02/javascript-tutorial-create-live-clock.html' title='Javascript tutorial : Create Live Clock'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-6033719407056141403</id><published>2008-02-19T00:42:00.002+07:00</published><updated>2008-02-19T01:03:35.889+07:00</updated><title type='text'>Create Basic Calendars with JavaScript And CSS</title><content type='html'>You maybe need a simple &lt;span style="font-weight: bold;"&gt;calendars&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;widged&lt;/span&gt; without PHP coding, just write simple &lt;span style="font-weight: bold; font-style: italic;"&gt;javascript&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;css&lt;/span&gt; coding. Following my step to workin' on your blog/websites :

&lt;ol&gt;&lt;li&gt;Insert this stylesheet / css coding into the  section (that means you must insert the code below between &amp;lt;head&amp;gt;until /head&amp;gt;) :
&amp;lt;style type="text/css"&amp;gt;

.main {
width:200px;
border:1px solid black;
}

.month {
background-color:black;
font:bold 12px verdana;
color:white;
}

.daysofweek {
background-color:gray;
font:bold 12px verdana;
color:white;
}

.days {
font-size: 12px;
font-family:verdana;
color:black;
background-color: lightyellow;
padding: 2px;
}

.days #today{
font-weight: bold;
color: red;
}

&amp;lt;/style&amp;gt;
&amp;lt;script type="text/javascript"&amp;gt;

function buildCal(m, y, cM, cH, cDW, cD, brdr){
var mn=['January','February','March','April','May','June','July','August','September','October','November','December'];
var dim=[31,0,31,30,31,30,31,31,30,31,30,31];

var oD = new Date(y, m-1, 1); //DD replaced line to fix date bug when current day is 31st
oD.od=oD.getDay()+1; //DD replaced line to fix date bug when current day is 31st

var todaydate=new Date() //DD added
var scanfortoday=(y==todaydate.getFullYear() &amp;amp;&amp;amp; m==todaydate.getMonth()+1)? todaydate.getDate() : 0 //DD added

dim[1]=(((oD.getFullYear()%100!=0)&amp;amp;&amp;amp;(oD.getFullYear()%4==0))||(oD.getFullYear()%400==0))?29:28;
var t='&amp;lt;div class="'+cM+'"&amp;gt;&amp;lt;table class="'+cM+'" cols="7" cellpadding="0" border="'+brdr+'" cellspacing="0"&amp;gt;&amp;lt;tr align="center"&amp;gt;';
t+='&amp;lt;td colspan="7" align="center" class="'+cH+'"&amp;gt;'+mn[m-1]+' - '+y+'&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr align="center"&amp;gt;';
for(s=0;s&amp;lt;7;s++)t+='&amp;lt;td class="'+cDW+'"&amp;gt;'+"SMTWTFS".substr(s,1)+'&amp;lt;/td&amp;gt;';
t+='&amp;lt;/tr&amp;gt;&amp;lt;tr align="center"&amp;gt;';
for(i=1;i&amp;lt;=42;i++){
var x=((i-oD.od&amp;gt;=0)&amp;amp;&amp;amp;(i-oD.od&amp;lt;dim[m-1]))? i-oD.od+1 : ' ';
if (x==scanfortoday) //DD added
x='&amp;lt;&amp;lt;span id="today"&amp;gt;'+x+'&amp;lt;/span&amp;gt;' //DD added
t+='&amp;lt;td class="'+cD+'"&amp;gt;'+x+'&amp;lt;/td&amp;gt;';
if(((i)%7==0)&amp;amp;&amp;amp;(i&amp;lt;36))t+='&amp;lt;/tr&amp;gt;&amp;lt;tr align="center"&amp;gt;';
}
return t+='&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;';
}

var todaydate=new Date()
var curmonth=todaydate.getMonth()+1 //get current month (1-12)
var curyear=todaydate.getFullYear() //get current year

document.write(buildCal(curmonth ,curyear, "main", "month", "daysofweek", "days", 1));
&amp;lt;/script&amp;gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Additional Information about the calendars coding function :
&lt;/span&gt;Basic Calendar uses one key function, buildCal(), to display a calendar. This function looks like this:
&lt;p style="border: 1px dashed rgb(0, 0, 0); color: rgb(0, 0, 0);"&gt;buildCal(4, 2003, "main", "month", "daysofweek", "days", 0)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;If you still confused : visit : dynamicdrive.com and choose calendars &amp;gt; basic calendars
&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-6033719407056141403?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/6033719407056141403/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=6033719407056141403&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6033719407056141403'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6033719407056141403'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/02/create-basic-calendars-with-javascript.html' title='Create Basic Calendars with JavaScript And CSS'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-4301942053954728802</id><published>2008-02-19T00:22:00.004+07:00</published><updated>2008-02-19T00:42:11.824+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web'/><category scheme='http://www.blogger.com/atom/ns#' term='Icon'/><category scheme='http://www.blogger.com/atom/ns#' term='Tool'/><title type='text'>Create Your own Favicon, by online tool.</title><content type='html'>Create &lt;span style="font-weight: bold;"&gt;Icon&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;Online&lt;/span&gt;? Favicon on the web is either accessories on your web. Maybe you've make your icon is more great than before by using desktop software. Try this tool from &lt;a href="http://tools.dynamicdrive.com/favicon/" target="_blank"&gt;dynamicdrive&lt;/a&gt;, named Favicon Generator. You must upload your image from your computer as gif, jpg, png, and bmp only. You also can upload transparency gif and png images. And Maximum file size is : 150KB . To create your own icon. Only Following this step :
&lt;ol&gt;&lt;li&gt;Select your Image&lt;/li&gt;&lt;li&gt;Click on Create Icon
&lt;/li&gt;&lt;li&gt;And your icon has already to be used.&lt;/li&gt;&lt;/ol&gt;Let's go designing a beutiful web.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-4301942053954728802?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/4301942053954728802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=4301942053954728802&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4301942053954728802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4301942053954728802'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2008/02/create-your-own-favicon-by-online-tool.html' title='Create Your own Favicon, by online tool.'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-759838314424826412</id><published>2007-10-26T01:57:00.000+07:00</published><updated>2007-10-26T02:05:47.474+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web'/><category scheme='http://www.blogger.com/atom/ns#' term='Web2.0'/><title type='text'>Web3.0 Will be, Web2.0 is ancient ways</title><content type='html'>&lt;div style="text-align: justify;"&gt;Wikipedia has describe this for web3.0
&lt;span style="font-weight: bold;"&gt;Web 3.0 is a term that is used to describe various evolution of Web usage and interaction along several separate paths. These include transforming the Web into a database, a move towards making content accessible by multiple non-browser applications, the leveraging of artificial intelligence technologies, the Semantic web, the Geospatial Web&lt;/span&gt;

Absolutely what is web3.0 with my own. Web 3.0 is web based application and desktop and Application which able to transforming the Web into a database like XML. Also An evolutionary path to artificial intelligence. Web3.0 is the realization of the Semantic Web and Service-Oriented Architecture. Web 3.0 is evolution of 2D web towards 3D, that may caused web3.0 also known as Web 3D.Web 3.0 is future computer application, that may be user don't need operating system to run application. But still need internet access.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-759838314424826412?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/759838314424826412/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=759838314424826412&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/759838314424826412'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/759838314424826412'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/10/web30-will-be-web20-is-ancient-ways.html' title='Web3.0 Will be, Web2.0 is ancient ways'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-6570792244638370602</id><published>2007-09-04T18:08:00.000+07:00</published><updated>2008-11-14T10:35:48.925+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Internet'/><category scheme='http://www.blogger.com/atom/ns#' term='Tool'/><category scheme='http://www.blogger.com/atom/ns#' term='Blog'/><title type='text'>AutoGraph™ - New Tool For Bloggers</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_OgkmcWupqFE/Rt079ui6JJI/AAAAAAAAANg/XTT1oILOijo/s1600-h/aoutograph.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; cursor: pointer;" src="http://4.bp.blogspot.com/_OgkmcWupqFE/Rt079ui6JJI/AAAAAAAAANg/XTT1oILOijo/s320/aoutograph.png" alt="" id="BLOGGER_PHOTO_ID_5106303484160517266" border="0" /&gt;&lt;/a&gt;
&lt;div style="text-align: justify;"&gt;I has some fresh news for bloggers on blogsphere, there is new tool for blogger to make signature for their blog, this tool name is AutoGraph™. You can include your name or your email, or even your website and your complete name. The autograph will appear at right bottom, but you can customize to appearing the autograph, such as the top-center, bottom-center, left-center, right-center, or even center-center , that interesting isn't?. &lt;a href="http://autograph.oknoo.net/demo/index.html"&gt;Go to the demo page of AutoGraph™&lt;/a&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-6570792244638370602?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.oknoo.net' title='AutoGraph™ - New Tool For Bloggers'/><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/6570792244638370602/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=6570792244638370602&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6570792244638370602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/6570792244638370602'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/09/autograph-new-tool-for-bloggers.html' title='AutoGraph™ - New Tool For Bloggers'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_OgkmcWupqFE/Rt079ui6JJI/AAAAAAAAANg/XTT1oILOijo/s72-c/aoutograph.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-4915984642880517414</id><published>2007-07-22T17:10:00.000+07:00</published><updated>2007-07-22T17:18:03.757+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='make money online'/><title type='text'>Make Money (Real Jobs) -- For Webmaster</title><content type='html'>If you're professional webmaster you can make money with spare your time and making contract with someone who need your web creation. Anyway if you're lucky at this projects  and you're win the contracts you can make money. How much I'll earn with this job..? Don't worry you can make money from $30 until $2000 at once contracts with buyer. So.. if you have spare time you can join with any freelancer on the world. &lt;a href="http://www.getafreelancer.com"&gt;Click Here&lt;/a&gt; if you want Make Money Right Now!!&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-4915984642880517414?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.getafreelancer.com' title='Make Money (Real Jobs) -- For Webmaster'/><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/4915984642880517414/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=4915984642880517414&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4915984642880517414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4915984642880517414'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/07/make-money-real-jobs-for-webmaster.html' title='Make Money (Real Jobs) -- For Webmaster'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-3224268081448648766</id><published>2007-06-26T20:05:00.000+07:00</published><updated>2008-11-14T10:35:49.080+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MySpace Layout'/><title type='text'>MySpace Layout Tutorial : Edit Scrollbar Colors</title><content type='html'>If your profile layout is not cool, I'll give you tips about change your scrollbar Colors. Follow this insctruction :
&lt;ol&gt;&lt;li&gt;Login to your MySpace Account.&lt;/li&gt;&lt;li&gt;And then click "&lt;span style="font-weight: bold;"&gt;Edit profile&lt;/span&gt;"&lt;/li&gt;&lt;li&gt;Copy-Paste this code into Heroes Section
&amp;lt;style type="text/css"&amp;gt;
body {
scrollbar-track-color: # 9966FF; /* track-color you can customize your own color*/
scrollbar-face-color: # 9933FF; /* face-color*/
scrollbar-3dlight-color: # 6600CC; /* 3Dlight Color*/
scrollbar-highlight-color: # 6633FF; /* Highlight Color*/
scrollbar-darkshadow-color: # 000000; /*DarkShadow Color */
scrollbar-shadow-color: # 3399FF; /* Shadow Color */
scrollbar-arrow-color: # FFFFFF; /* Arrow Color */
}
&amp;lt;/style&amp;gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_OgkmcWupqFE/RoEPiGnCf4I/AAAAAAAAABA/CBEZ8dY7PM0/s1600-h/scroll-bar.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_OgkmcWupqFE/RoEPiGnCf4I/AAAAAAAAABA/CBEZ8dY7PM0/s320/scroll-bar.gif" alt="" id="BLOGGER_PHOTO_ID_5080358933214953346" border="0" /&gt;&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;You can customize your own scrollbar.
&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-3224268081448648766?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/3224268081448648766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=3224268081448648766&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3224268081448648766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3224268081448648766'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/myspace-layout-tutorial-edit-scrollbar.html' title='MySpace Layout Tutorial : Edit Scrollbar Colors'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_OgkmcWupqFE/RoEPiGnCf4I/AAAAAAAAABA/CBEZ8dY7PM0/s72-c/scroll-bar.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-3697400277197763406</id><published>2007-06-26T00:13:00.000+07:00</published><updated>2007-06-26T00:46:36.104+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript tutorial'/><title type='text'>JavaScript tutorial : Confirmation Alerts</title><content type='html'>I'll give simple tutorial about Confirmation alerts which will be used if user click "Submit Button". Follow this instruction :
&lt;ol&gt;&lt;li style="text-align: justify;"&gt;Create a HTML with form registration Name and Password and verification password Only.&lt;/li&gt;&lt;li&gt;Create a JavaScript with name &lt;span style="font-weight: bold;"&gt;script.js &lt;/span&gt;on your web directory.&lt;/li&gt;&lt;li&gt;Fill the script like this :
&lt;pre id="line1"&gt;function checkform(form)
{
var numChars = "0123456789";
var iChars = "!@#$%^&amp;*()+=-[]\\\';,./{}|\":&lt;&gt;? ";
var iName = "!@#$%^&amp;*()+=-[]\\\';,./{}|\":&lt;&gt;?";
if (form.fuser.value.length &amp;lt; 6)
{
alert( "Username must be filled and least 6 characters." );
form.fuser.focus();
return false ;
}

for (var i = 0; i &amp;lt; form.fuser.value.length; i++) {
if (iChars.indexOf(form.fuser.value.charAt(i)) != -1) {
alert ("There is any special character in Username.");
form.fuser.focus();
return false;
}
}
if (form.fpwd1.value == "") {
alert( "Username must be filled" );
form.fpwd1.focus();
return false ;
}
if (form.fpwd1.value.length &amp;lt; 6)
{
alert( "Password at least 6 characters" );
form.fpwd1.focus();
return false ;
}
for (var i = 0; i &amp;lt; form.fpwd1.value.length; i++) {
if (iChars.indexOf(form.fpwd1.value.charAt(i)) != -1) {
alert ("There is any special character in Password.");
form.fpwd1.focus();
return false;
}
}
if (form.fpwd2.value == "") {
alert( "Verification Password must be filled." );
form.fpwd2.focus();
return false ;
}
if (form.fpwd2.value != form.fpwd1.value) {
alert( "Verification password is not same with Password" );
form.fpwd2.focus();
return false ;
}
if (form.fpwd2.value == form.fuser.value) {
alert( "For security, username and password may not twin" );
form.fpwd2.focus();
return false ;
}
return true;
}
&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;Don't forget to add &amp;lt;script language="javascript" src="script.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/li&gt;&lt;li&gt;Name of username's inputbox : fuser&lt;/li&gt;&lt;li&gt;Name of password's inputbox : fpwd&lt;/li&gt;&lt;li&gt;Name of Verification password's inputbox : fwd2
&lt;/li&gt;&lt;li&gt;Add properties of form like this : onSubmit="javascript checkform(this)"&lt;/li&gt;&lt;/ol&gt;Good luck with your jobs.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-3697400277197763406?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/3697400277197763406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=3697400277197763406&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3697400277197763406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3697400277197763406'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/javascript-tutorial-confirmation-alerts.html' title='JavaScript tutorial : Confirmation Alerts'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-1214128084502594850</id><published>2007-06-24T06:41:00.000+07:00</published><updated>2008-11-14T10:35:49.389+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Create your own CSS Template</title><content type='html'>Anyway to create cooler template is try to create a template by self. Learn about CSS advanced in popular site on this blog header. Or you can download free css template (&lt;span style=""&gt;&lt;span class="a"&gt;&lt;a href="http://www.freecsstemplates.org/"&gt;www.freecsstemplates.org&lt;/a&gt;, &lt;/span&gt;&lt;/span&gt;&lt;a href="http://www.free-css-templates.com/"&gt;&lt;span style=""&gt;&lt;span class="a"&gt;www.free-css-templates.com&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;) and modifying it. Look at the sample. I was downloaded the enlight template. This is screenshot of template.
&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_OgkmcWupqFE/Rn2xaWnCf1I/AAAAAAAAAAo/USzXVIKhKGM/s1600-h/ScreenShot.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_OgkmcWupqFE/Rn2xaWnCf1I/AAAAAAAAAAo/USzXVIKhKGM/s320/ScreenShot.jpg" alt="" id="BLOGGER_PHOTO_ID_5079411021047824210" border="0" /&gt;&lt;/a&gt;

And then edit the css template in default.css until like this (this is my template you can edit default.css in your ways) :
&lt;span class="fullpost"&gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_OgkmcWupqFE/Rn20Y2nCf2I/AAAAAAAAAAw/uv4TChmI06U/s1600-h/Untitled+2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_OgkmcWupqFE/Rn20Y2nCf2I/AAAAAAAAAAw/uv4TChmI06U/s320/Untitled+2.jpg" alt="" id="BLOGGER_PHOTO_ID_5079414293812903778" border="0" /&gt;&lt;/a&gt;You can edit the default.css like do you want.&lt;/span&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-1214128084502594850?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/1214128084502594850/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=1214128084502594850&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/1214128084502594850'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/1214128084502594850'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/create-your-own-css-template.html' title='Create your own CSS Template'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_OgkmcWupqFE/Rn2xaWnCf1I/AAAAAAAAAAo/USzXVIKhKGM/s72-c/ScreenShot.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-1035494054138557826</id><published>2007-06-23T06:51:00.000+07:00</published><updated>2007-06-23T07:05:41.496+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Layout'/><title type='text'>Remove unimportant myspace profile</title><content type='html'>How to remove unimportant profile in your myspace profile, it's easy way. Click Edit Profile - About Me and paste this code

&lt;p&gt;
&amp;lt;style type="text/css"&amp;gt;&amp;
div table tr td form { display:hidden; display:none;}&amp;lt;
.navigationBar, .friendSpace, .interestsAndDetails, .statusMessage, .blurbs tr td .orangetext15, .friendsComments { display:hidden; display:none; height:0; }
td.text {visibility:hidden;}&amp;
.text td, td.text span, td.text a {visibility:visible;}
table table td.text table table div img {visibility:visible;}
table table td.text table table div { background-image:none;}
table tbody tr td a, div table tbody tr td input, div table tbody tr td font {visibility: hidden}&amp;
&amp;lt;/style&amp;gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-1035494054138557826?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/1035494054138557826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=1035494054138557826&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/1035494054138557826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/1035494054138557826'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/remove-unimportant-myspace-profile.html' title='Remove unimportant myspace profile'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-3750668155186840376</id><published>2007-06-23T06:38:00.000+07:00</published><updated>2007-06-23T06:40:50.463+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HTML Tutorial'/><title type='text'>HTM Tutorial : HTML - Attributes</title><content type='html'>&lt;h1&gt;HTML - Attributes&lt;/h1&gt; &lt;p style="text-align: justify;"&gt;Attributes are used to amplify tags. What we mean by amplify is that when a web browser interprets a tag, it will also search for set attributes and then display the element (tags+attributes) in its entirety. At some point you may want to give your body element a background color or perhaps change the width of a table. All of these things and more can be achieved using Attributes.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Many HTML tags have a unique set of their own attributes. These will be discussed as each tag is introduced throughout the tutorial. Right now we want to focus on a set of generic attributes that can be used with just about every HTML Tag in existence.&lt;/p&gt; &lt;p&gt;Attributes are placed within the opening tag and they follow a precise syntax (format).&lt;/p&gt;&lt;span class="fullpost"&gt;&lt;h1&gt;HTML - Class or ID Attribute&lt;/h1&gt; &lt;p style="text-align: justify;"&gt;The class and id attributes are nearly identical. They play no direct role in formatting your elements but rather serve behind the scenes for scripting and Cascading Style Sheets (CSS). The role of classification and identifying elements will become more apparent as your learn CSS.&lt;/p&gt; &lt;p style="text-align: justify;"&gt;The idea is that you can classify or id certain a tag and later format the tag using Cascading Style Sheets. It becomes necessary when you have two or more of the same element on a page (like a &lt;/p&gt;&lt;p&gt; tag) but want them to be different in appearance.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;p color="red"&gt;id="italicsparagraph"&gt;Paragraph type 1 Italics&lt;/p&gt;
&lt;p color="red"&gt;id="boldparagraph"&gt;Paragraph type 2 Bold&lt;/p&gt;
&lt;/pre&gt;&lt;/div&gt; &lt;h2 class="specialT"&gt;Classification Attributes:&lt;/h2&gt;&lt;div class="display"&gt; &lt;i&gt;Paragraph type 1 Italics&lt;/i&gt;
&lt;b&gt;Paragraph type 2 Bold&lt;/b&gt; &lt;/div&gt;  &lt;h1&gt;HTML - Name Attribute&lt;/h1&gt; &lt;p&gt;Name is much different than id and class. By allotting a name to an element, that name becomes a scripting variable for scripting languages such as Javascript, ASP, and PHP. The name attribute is seen most often with forms and other user-input elements.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;input color="red" type="text"&gt;name="TextField" /&gt;
&lt;/pre&gt;&lt;h1&gt;HTML - Title Attribute&lt;/h1&gt; &lt;p&gt;This is a neat little perhaps, forgotten attribute. This attribute titles an element and adds a tiny text pop-up to any HTML element. Much like the text pop-ups of word processing programs, these attributes should not be forgotten. You may title an element anything you would like, the effects of this attribute are not seen until you hover your mouse over the element for a few seconds.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;h2 color="red"&gt;title="Hello There!"&gt;Titled Heading Tag&lt;/h2&gt;
&lt;/pre&gt;&lt;/div&gt; &lt;h2 class="specialT"&gt;Title Attribute:&lt;/h2&gt;&lt;div class="display"&gt; &lt;h2 title="Hello There!"&gt;Titled Heading Tag&lt;/h2&gt; &lt;/div&gt; &lt;p&gt;Hover your mouse over the display heading to see the magic of the title attribute! This provides your web site with some user interaction which is priceless. Do not overlook the title attribute.&lt;/p&gt;  &lt;h1&gt;HTML - Align Attribute&lt;/h1&gt; &lt;p&gt;If you wish to change the horizontal location of your elements you may do so using the align attribute. You may align things left, right, or center. By default most elements are automatically aligned left unless otherwise specified.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;h2 color="red"&gt;align="center"&gt;Centered Heading&lt;/h2&gt;
&lt;/pre&gt;&lt;/div&gt; &lt;h2 class="specialT"&gt;Display:&lt;/h2&gt;&lt;div class="display"&gt; &lt;h2 align="center"&gt;Centered Heading&lt;/h2&gt; &lt;/div&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;h2 color="red"&gt;align="left"&gt;Left aligned heading&lt;/h2&gt;

&lt;h2 color="red"&gt;align="center"&gt;Centered Heading&lt;/h2&gt;

&lt;h2 color="red"&gt;align="right"&gt;Right aligned heading&lt;/h2&gt;
&lt;/pre&gt;&lt;/div&gt; &lt;h2 class="specialT"&gt;Display:&lt;/h2&gt;&lt;div class="display"&gt; &lt;h2 align="left"&gt;Left aligned heading&lt;/h2&gt; &lt;h2 align="center"&gt;Centered heading&lt;/h2&gt; &lt;h2 align="right"&gt;Right aligned heading&lt;/h2&gt; &lt;/div&gt;   &lt;h1&gt;Attribute Defaults&lt;/h1&gt; &lt;p&gt;Many tags are assigned default attributes. This means that unless a tag attribute is specified by you the creator, it will have some distinct attributes. For example, a paragraph tag will always align its text to the left unless it has an align attribute in it specifying otherwise. Also elements placed within a table are vertically centered and to the left unless otherwise specified. As you code and learn about each of the different HTML elements, you will become aware of many of these defaults.&lt;/p&gt;  &lt;h1&gt;Generic Attributes&lt;/h1&gt; &lt;p&gt;Attributes exist to modify HTML tags allowing for complete customization of a website. Here's a table of some other attributes that are readily usable with many of HTML's tags.&lt;/p&gt;  &lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Attribute&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Options&lt;/b&gt;&lt;/td&gt;&lt;td&gt;&lt;b&gt;Function&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;align&lt;/td&gt;&lt;td&gt;right, left, center&lt;/td&gt;&lt;td&gt;Horizontally aligns tags&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;valign&lt;/td&gt;&lt;td&gt;top, middle, bottom&lt;/td&gt;&lt;td&gt;Vertically aligns tags within an HTML element.&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;bgcolor&lt;/td&gt;&lt;td&gt;numeric, hexidecimal, RGB values&lt;/td&gt;&lt;td&gt;Places a background color behind an element&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;background&lt;/td&gt;&lt;td&gt;URL&lt;/td&gt;&lt;td&gt;Places an background image behind an element&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;id&lt;/td&gt;&lt;td&gt;User Defined&lt;/td&gt;&lt;td&gt;Names an element for use with Cascading Style Sheets.&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;class&lt;/td&gt;&lt;td&gt;User Defined&lt;/td&gt;&lt;td&gt;Classifies an element for use with Cascading Style Sheets.&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;width&lt;/td&gt;&lt;td&gt;Numeric Value&lt;/td&gt;&lt;td&gt;Specifies the width of tables, images, or table cells.&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;height&lt;/td&gt;&lt;td&gt;Numeric Value&lt;/td&gt;&lt;td&gt;Specifies the height of tables, images, or table cells.&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;title&lt;/td&gt;&lt;td&gt;User Defined&lt;/td&gt;&lt;td&gt;"Pop-up" title for your elements.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-3750668155186840376?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/3750668155186840376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=3750668155186840376&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3750668155186840376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/3750668155186840376'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/htm-tutorial-html-attributes.html' title='HTM Tutorial : HTML - Attributes'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-2516003441383771838</id><published>2007-06-23T06:34:00.000+07:00</published><updated>2007-06-23T06:37:58.345+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HTML Tutorial'/><title type='text'>HTML Tutorial : Beginning HTML Tags!</title><content type='html'>&lt;div style="text-align: justify;"&gt;A web browser reads an HTML document top to bottom, left to right. Each time the browser finds a tag, it is displayed accordingly (paragraphs look like paragraphs, tables look like tables, etc). Tags have 3 major parts: opening tag(s), content(s), and closing tag(s). Recall that a completed tag is termed an element. By adding tags to an HTML document, you signal to the browser "Hey look, I'm a paragraph tag, now treat me as such."
&lt;p&gt;As you will learn, there are probably hundreds of HTML Tags. Tables, images, lists, forms, and everything else being displayed on an web page requires the use of a tag or two.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;openingtag&gt;Content&lt;/openingtag&gt;
&lt;p&gt;A Paragraph Tag&lt;/p&gt;
&lt;/pre&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;
&lt;p&gt;Tags should be lower-case letters if you plan on publishing your work. This is the standard for XHTML and Dynamic HTML. Here's quick look at some HTML tags.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Tags:&lt;/h2&gt;&lt;pre class="code"&gt;Body Tag (acts as a content shell)
&lt;p&gt;Paragraph Tag&lt;/p&gt;
&lt;h2&gt;Heading Tag&lt;/h2&gt;
&lt;b&gt;&lt;b&gt;Bold Tag&lt;/b&gt;&lt;/b&gt;
&lt;i&gt;&lt;i&gt;Italic Tag&lt;/i&gt;&lt;/i&gt;

&lt;/pre&gt;&lt;/div&gt;  &lt;h1&gt;Tags Without Closing Tags&lt;/h1&gt; &lt;p&gt;There are a few tags that do not follow the mold above. In a way, they still have the 3 parts (opening/closing and content). These tags however do not require a formal  but rather a modified version. The reason being that these tags do not really require any content. Rather some of them just need a source URL and this is enough information for the web browser to display the tag properly (image tags). Let's take a look at a line break tag.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;

&lt;/pre&gt;&lt;/div&gt; &lt;p&gt;To tell the browser we want to place a line break (carriage return) onto the site, it is not necessary to type
linebreak
. If every line break tag needed all three components as other do, life would become redundant real quick. Instead the better solution was to combine the opening and closing tags into a single format. Other tags have also been modified such as the image tag and input tag.&lt;/p&gt; &lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&lt;img src="http://www.blogger.com/mypic.jpg" /&gt; -- Image Tag

-- Line Break Tag
&lt;input size="12" type="text"&gt; -- Input Field

&lt;/pre&gt;&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-2516003441383771838?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/2516003441383771838/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=2516003441383771838&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/2516003441383771838'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/2516003441383771838'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/beginning-html-tags.html' title='HTML Tutorial : Beginning HTML Tags!'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-7311526922768775374</id><published>2007-06-23T06:18:00.000+07:00</published><updated>2007-06-23T06:37:38.780+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HTML Tutorial'/><title type='text'>HTML Tutorial : Elements</title><content type='html'>&lt;h1&gt;HTML Elements&lt;/h1&gt;&lt;div style="text-align: justify;"&gt;HTML elements exist on many levels. Everything you see in front of you, the paragraph texts, and the navigation links on the left are all elements of this web page. An element in HTML is a loose term that describes &lt;span class="fullpost"&gt;each individual piece of your web page.&lt;/span&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;An element consists of three basic parts: an opening tag, the element's content, and finally, a closing tag.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;ol&gt;
&lt;li&gt;&lt;b&gt;&amp;lt;p&amp;gt;&lt;/b&gt; - opening paragraph tag&lt;/li&gt;&lt;li&gt;&lt;b&gt;Element Content&lt;/b&gt; - paragraph words&lt;/li&gt;&lt;li&gt;&lt;b&gt;&amp;lt;/p&amp;gt;&lt;/b&gt; - closing tag&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Every (web)page requires four critical elements: the &lt;i&gt;html&lt;/i&gt;, &lt;i&gt;head&lt;/i&gt;, &lt;i&gt;title&lt;/i&gt;, and &lt;i&gt;body&lt;/i&gt; elements.&lt;/p&gt;&lt;h1&gt;The &amp;lt;html&amp;gt; Element...&amp;lt;/html&amp;gt;&lt;/h1&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;&amp;lt;html&amp;gt; begins and ends each and every web page.  Its sole purpose is to encapsulate all the HTML code and describe the HTML document to the web browser.  Remember to close your HTML documents with the corresponding &amp;lt;/html&amp;gt; tag at the bottom of the document.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;If you haven't already, open up Notepad  and have a new, blank document ready to go.  Copy the following HTML code into your text editor.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&amp;lt;html&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;Now save your file by Selecting Menu and then Save. Click on the "Save as Type" drop down box and select the option "All Files". When asked to name your file, name it "index.html", without the quotes. Double check that you did everything correctly and then press save. Now open your file in a new web browser so that you have the ability to &lt;i&gt;refresh&lt;/i&gt; your page and see your changes.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;If you opened up your index.html document, you should be starring at your very first blank (white) web page!&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;h1&gt;The &amp;lt;head&amp;gt; Element&lt;/h1&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;The &amp;lt;head&amp;gt; element is "next" as they say. As long as it falls somewhere between your &amp;lt;html&amp;gt; tag and your web page content (&amp;lt;body&amp;gt;), you're golden. The &lt;i&gt;head&lt;/i&gt; functions "behind the scenes." Tags placed within the &lt;i&gt;head&lt;/i&gt; element are not directly displayed by web browsers. We will be placing the &amp;lt;title&amp;gt; element here and we'll talk about the other possible elements in later lessons.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;Other elements used for scripting (Javascript) and formatting (CSS) will eventually be introduced and you will have to place them within your head element. For now, your head element will continue to lay empty except for the &lt;i&gt;title&lt;/i&gt; element that will be introduced next.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;p&gt;Here's a sample of the initial set up.&lt;/p&gt;&lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;As of yet, we still have nothing happening on the web page. All we have so far is a couple of necessary elements that describe our document to the web browser. Content (stuff you can see) will come later.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;h1&gt;The &amp;lt;title&amp;gt; Element&lt;/h1&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;Place the &amp;lt;title&amp;gt; tag within the &amp;lt;head&amp;gt; element to title your page. The words you write between the opening and closing &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt; tags will be displayed at the top of a viewer's browser. Here's the html code:&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&lt;span style="color:red;"&gt;&amp;lt;title&amp;gt;My WebPage!&amp;lt;/title&amp;gt;&lt;/span&gt;
&amp;lt;/head&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;Save the file and open it in your browser.  You should see "My WebPage!" in the upper-left, as the window's title.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;Name your webpage as you please, just keep in mind, the best titles are brief and descriptive.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;h1&gt;The &amp;lt;body&amp;gt; Element&lt;/h1&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="fullpost"&gt;&lt;p&gt;The &amp;lt;body&amp;gt; element is where &lt;i&gt;all&lt;/i&gt; content is placed.  (Paragraphs, pictures, tables, etc). As the menu on the left suggests, we will be looking at each of these elements in greater detail as the tutorial progresses. For now, it is only important to understand that the body element will encapsulate all of your webpage's viewable content.&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="fullpost"&gt;&lt;div class="codewrap"&gt;&lt;h2 class="specialT"&gt;HTML Code:&lt;/h2&gt;&lt;pre class="code"&gt;&amp;lt;html&amp;gt;

&amp;lt;head&amp;gt;
&amp;lt;title&amp;gt;My WebPage!&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
Hello World! All my content goes here!
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Go ahead and view your first, complete webpage.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-7311526922768775374?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/7311526922768775374/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=7311526922768775374&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/7311526922768775374'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/7311526922768775374'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/html-tutorial-elements.html' title='HTML Tutorial : Elements'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-2694494858596310105</id><published>2007-06-22T07:26:00.000+07:00</published><updated>2007-06-22T07:42:33.659+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SEO'/><category scheme='http://www.blogger.com/atom/ns#' term='make money online'/><title type='text'>Make A Website and Make Money is not late</title><content type='html'>&lt;div style="text-align: justify;"&gt;If you think that you are too late to &lt;span style="font-weight: bold;"&gt;making money online&lt;/span&gt; you is wrong. Because many beginner around the worlds is start their participate to &lt;span style="font-weight: bold;"&gt;make money online&lt;/span&gt;. Few seconds ago, many beginner has started to make money online. Is better to you make money online right now and sign up as Problogger (Professional Blogger is blogger who earn by posting). You can choose many program on the Internet. Like &lt;a href="http://www.google.com/adsense"&gt;Google Adsense&lt;/a&gt;, &lt;a href="http://www.adbrite.com/"&gt;Adbrite&lt;/a&gt;, &lt;a href="http://www.auctionads.com/"&gt;AuctionAds&lt;/a&gt;, Yahoo Publisher, &lt;a href="http://www.obeus.com/"&gt;Obeus&lt;/a&gt;, and other program like that.
&lt;p&gt;I've just become a Problogger one month ago, and my money only $3.xx. One thing you must remember that make money online is not easy. You must understanding SEO (Search Engine Optimization). By the way, many successful problogger on  the Internet right now. They have static earning $5,000 per month. Is not too late to you to try it.&lt;/p&gt;&lt;span class="fullpost"&gt;So, you can try anytime. You can search articles to optimize your blog or your site. You too can make money with your site&lt;/span&gt;

&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-2694494858596310105?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/2694494858596310105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=2694494858596310105&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/2694494858596310105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/2694494858596310105'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/make-website-and-make-money-is-not-late.html' title='Make A Website and Make Money is not late'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-4185914330139046926</id><published>2007-06-22T06:57:00.000+07:00</published><updated>2008-11-14T10:35:49.617+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='AJAX'/><category scheme='http://www.blogger.com/atom/ns#' term='Web2.0'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><title type='text'>Create your own Web 2.0 Button</title><content type='html'>&lt;div style="text-align: justify;"&gt;Here I want share to you the easiest way to create a Web2.0 Button (&lt;a href="http://www.mycoolbutton.com"&gt;http://www.mycoolbutton.com&lt;/a&gt;). And this service is free to try. It's very nice and cool service, because you can put your own icon on your button. See the sample :
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_OgkmcWupqFE/RnsR0mnCf0I/AAAAAAAAAAg/lC1951DNGsY/s1600-h/www.STADTAUS.com_btn6587288.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_OgkmcWupqFE/RnsR0mnCf0I/AAAAAAAAAAg/lC1951DNGsY/s320/www.STADTAUS.com_btn6587288.png" alt="" id="BLOGGER_PHOTO_ID_5078672600205524802" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Setup Size (100px - 200px)&lt;/li&gt;&lt;li&gt;Setup color&lt;/li&gt;&lt;li&gt;Setup Icon (Upload your own icon)&lt;/li&gt;&lt;li&gt;Setup Font&lt;/li&gt;&lt;li&gt;And then click apply changes&lt;/li&gt;&lt;li&gt;If you sure that this is your button, click Download&lt;/li&gt;&lt;/ul&gt;I'ts so fun, simple, and easy. But the result is Good and Cool&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-4185914330139046926?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/4185914330139046926/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=4185914330139046926&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4185914330139046926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/4185914330139046926'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/create-your-own-web-20-button.html' title='Create your own Web 2.0 Button'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_OgkmcWupqFE/RnsR0mnCf0I/AAAAAAAAAAg/lC1951DNGsY/s72-c/www.STADTAUS.com_btn6587288.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-8936898382598002167</id><published>2007-06-22T03:15:00.000+07:00</published><updated>2007-06-22T03:29:02.247+07:00</updated><title type='text'>Choosing An Editor</title><content type='html'>&lt;div style="text-align: justify;"&gt;Basically for editing HTML, CSS, or Javascript can use any editor like notepad, even you can create web page using wordprocessing like MS Word. But good editor is have some specifications like :
&lt;ul&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/WYSIWYG"&gt;WYSIWYG&lt;/a&gt; (What you see is What you get).&lt;/li&gt;&lt;li&gt;Can use as many editor web programming (PHP, ASP, JSP, etc).&lt;/li&gt;&lt;li&gt;And Important point is easy to use.&lt;/li&gt;&lt;/ul&gt;That specifications is most have by professional editor. Before doing something (Designing HTML), you must choose an editor for editing HTML. There are popular editor was used many people right now :&lt;span class="fullpost"&gt;
&lt;ul&gt;&lt;li&gt;Macromedia Dreamwaver&lt;/li&gt;&lt;li&gt;Microsoft Frontpage&lt;/li&gt;&lt;/ul&gt;But if you want an editor from web page (Web Application / Web2.0) you can try many links on the internet just type "Online HTML editor" or use this word "HTML Editor Web2.0" or "HTML Editor with AJAX".&lt;/span&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-8936898382598002167?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/8936898382598002167/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=8936898382598002167&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/8936898382598002167'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/8936898382598002167'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/choosing-editor.html' title='Choosing An Editor'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-2200808907694157664</id><published>2007-06-22T02:48:00.001+07:00</published><updated>2008-11-14T10:35:49.790+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web Design'/><title type='text'>What must I do first time?</title><content type='html'>First something if you'll create a web page is designing layout or template. Any tips from me is :
&lt;ul&gt;&lt;li&gt;Design layout on paper
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_OgkmcWupqFE/RnrY92nCfzI/AAAAAAAAAAY/GIovBgWfIYk/s1600-h/Untitled+4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_OgkmcWupqFE/RnrY92nCfzI/AAAAAAAAAAY/GIovBgWfIYk/s320/Untitled+4.jpg" alt="" id="BLOGGER_PHOTO_ID_5078610086956531506" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Choose the color&lt;/li&gt;&lt;li&gt;Create an image for adding art for your page&lt;/li&gt;&lt;li&gt;Design your paper-design into HTML Editor (e.g Dreamwaver, MS Frontpage, etc).&lt;/li&gt;&lt;li&gt;Create a stylesheet (I recommend using MS Frontpage).&lt;/li&gt;&lt;li&gt;Load your work art into browser (e.g Mozilla Firefox, Internet Explorer, etc).&lt;/li&gt;&lt;/ul&gt;When you create a stylesheet (CSS) and setting the color, if you are beginner I recommend to you to see any web page on internet.&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-2200808907694157664?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/2200808907694157664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=2200808907694157664&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/2200808907694157664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/2200808907694157664'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/what-must-i-do-first-time.html' title='What must I do first time?'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_OgkmcWupqFE/RnrY92nCfzI/AAAAAAAAAAY/GIovBgWfIYk/s72-c/Untitled+4.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5984553204150705591.post-446673888213059616</id><published>2007-06-22T00:41:00.000+07:00</published><updated>2007-06-22T01:02:42.479+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='javascript tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>HTML (Hypertext Markup Language)</title><content type='html'>&lt;div style="text-align: justify;"&gt;On this blog you'll learn about HTML, Ajax, JavaScript, And Css. The purpose of all is to pimp your older layout become better than old. HTML is not programming language like Visual Basic, C++, Java, or other programming language.
&lt;/div&gt;
&lt;span style="font-weight: bold;"&gt;Words to know in HTML&lt;/span&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;Tag&lt;/b&gt; - Used to specify ("mark-up") regions of HTML documents for the web browser to interpret. Tags look  like this: &lt;tag&gt; and more..
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Element&lt;/b&gt; - A complete tag, having an opening &lt;tag&gt; and a closing &lt;/tag&gt;
&lt;/li&gt;&lt;li&gt;&lt;b&gt;Attribute&lt;/b&gt; - Used to modify the value of the HTML element. Elements  will often have multiple attributes. &lt;/li&gt;&lt;/ul&gt; &lt;p style="text-align: justify;"&gt;For now just know that a &lt;i&gt;tag&lt;/i&gt; is a command the web browser interprets, an &lt;i&gt;element&lt;/i&gt; is a complete tag, and an &lt;i&gt;attribute&lt;/i&gt; customizes or modifies HTML elements.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-6692285242740169";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "CC0000";
google_color_text = "000000";
google_color_url = "000000";
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5984553204150705591-446673888213059616?l=pimpyourlayout.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pimpyourlayout.blogspot.com/feeds/446673888213059616/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5984553204150705591&amp;postID=446673888213059616&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/446673888213059616'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5984553204150705591/posts/default/446673888213059616'/><link rel='alternate' type='text/html' href='http://pimpyourlayout.blogspot.com/2007/06/html-hypertext-markup-language.html' title='HTML (Hypertext Markup Language)'/><author><name>Ribhararnus Pracutian</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-4qcUhI6KyYk/AAAAAAAAAAI/AAAAAAAABX8/CnIrYWJA8JM/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry></feed>
