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

<channel>
	<title>Tutorial Melayu &#187; favicon</title>
	<atom:link href="http://www.tutorialmelayu.com/tag/favicon/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tutorialmelayu.com</link>
	<description></description>
	<lastBuildDate>Sun, 06 Nov 2011 12:38:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Favicon</title>
		<link>http://www.tutorialmelayu.com/umum/favicon</link>
		<comments>http://www.tutorialmelayu.com/umum/favicon#comments</comments>
		<pubDate>Wed, 28 Jan 2009 20:20:03 +0000</pubDate>
		<dc:creator>mdpai</dc:creator>
				<category><![CDATA[Umum]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[ikon kecil di tepi url]]></category>

		<guid isPermaLink="false">http://www.tutorialmelayu.com/?p=8</guid>
		<description><![CDATA[Icon kecil di tepi URL sesuatu website selalunya dipandang remeh oleh sesetengah pihak, tapi sebenarnya ia juga memainkan faktor yang agak penting. Favicon inilah yang sebenarnya membolehkan pengunjung website anda mengingati anda dengan lebih mudah. Lihat contoh Google, ia menggunakan simbol G sebagai faviconnya. Ia menjadi seakan trademark kepada website tersebut. Untuk memasukkan favicon anda [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.tutorialmelayu.com/wp-content/uploads/2009/01/fav.jpg" alt="fav" title="fav" width="255" height="66" class="alignnone size-full wp-image-26" /></p>
<p>Icon kecil di tepi URL sesuatu website selalunya dipandang remeh oleh sesetengah pihak, tapi sebenarnya ia juga memainkan faktor yang agak penting. Favicon inilah yang sebenarnya membolehkan pengunjung website anda mengingati anda dengan lebih mudah. Lihat contoh Google, ia menggunakan simbol G sebagai faviconnya. Ia menjadi seakan trademark kepada website tersebut.</p>
<p><span id="more-8"></span></p>
<p>Untuk memasukkan favicon anda sendiri, ikut cara di bawah;</p>

<div class="wp_codebox"><table><tr id="p84"><td class="code" id="p8code4"><pre class="php" style="font-family:monospace;"><span style="color: #eeeeee;">&lt;</span>link rel<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;icon&quot;</span> type<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;image/png&quot;</span> href<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;/images/myicon.png&quot;</span> <span style="color: #eeeeee;">/&gt;</span></pre></td></tr></table></div>

<p>Untuk contoh di atas, saya menyimpan favicon saya di dalam folder images. Untuk favicon, kita tidak terhad kepada format ico sahaja, format jpg dan png juga boleh digunakan. Contoh untuk format jpg.</p>

<div class="wp_codebox"><table><tr id="p85"><td class="code" id="p8code5"><pre class="php" style="font-family:monospace;"><span style="color: #eeeeee;">&lt;</span>link rel<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;icon&quot;</span> type<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;image/jpg&quot;</span> href<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;/images/myicon.jpg&quot;</span> <span style="color: #eeeeee;">/&gt;</span></pre></td></tr></table></div>

<p>Masukkan kod ini di dalam ruangan <head> page HTML anda. Lihat contoh di bawah</p>

<div class="wp_codebox"><table><tr id="p86"><td class="code" id="p8code6"><pre class="php" style="font-family:monospace;"><span style="color: #eeeeee;">&lt;!</span>DOCTYPE html 
      <span style="color: #dfc484; font-weight: bold;">PUBLIC</span> <span style="color: #ff8400;">&quot;-//W3C//DTD HTML 4.01//EN&quot;</span>
      <span style="color: #ff8400;">&quot;http://www.w3.org/TR/html4/strict.dtd&quot;</span><span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">&lt;</span>html lang<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;en-US&quot;</span><span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">&lt;</span>head profile<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;http://www.w3.org/2005/10/profile&quot;</span><span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">&lt;</span>link rel<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;icon&quot;</span> type<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;image/png&quot;</span> href<span style="color: #eeeeee;">=</span><span style="color: #ff8400;">&quot;http://example.com/myicon.png&quot;</span><span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">&lt;/</span>head<span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">&lt;</span>body<span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">....</span>
<span style="color: #eeeeee;">&lt;/</span>body<span style="color: #eeeeee;">&gt;</span>
<span style="color: #eeeeee;">&lt;/</span>html<span style="color: #eeeeee;">&gt;</span></pre></td></tr></table></div>

<p>Selamat mencuba!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tutorialmelayu.com/umum/favicon/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

