<?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>Web Design Tutorial</title>
	<atom:link href="http://linkinpark.blog.ugm.ac.id/feed/" rel="self" type="application/rss+xml" />
	<link>http://linkinpark.blog.ugm.ac.id</link>
	<description>Web Design Tutorial for Beginner and Expert</description>
	<lastBuildDate>Wed, 22 Jun 2011 05:01:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Lowongan Kerja PT Bumi Sarinah Consulting</title>
		<link>http://linkinpark.blog.ugm.ac.id/uncategorized/lowongan-kerja-pt-bumi-sarinah-consulting/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/uncategorized/lowongan-kerja-pt-bumi-sarinah-consulting/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 05:01:58 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=168</guid>
		<description><![CDATA[Vacancy (Lowongan Pekerjaan) Kami Bumi Sarinah Consulting, perusahaan konsultan energi bertaraf nasional, mencari kandidat terbaik untuk mengisi posisi strategis tenaga Ahli dengan persyaratan sbb : - Sarjana (S1) dari Jurusan Teknik Industri atau Manajemen - IPK Minimal 3,00 - Berpengalaman minimal 1 tahun (Fresh graduate are welcome) - Menguasai Supply Chain Management - Familiar dengan [...]]]></description>
			<content:encoded><![CDATA[<p>Vacancy (Lowongan Pekerjaan)<br />
Kami Bumi Sarinah Consulting, perusahaan konsultan energi bertaraf nasional,<br />
mencari kandidat terbaik untuk mengisi posisi strategis tenaga Ahli dengan<br />
persyaratan sbb :<br />
- Sarjana (S1) dari Jurusan Teknik Industri atau Manajemen<br />
- IPK Minimal 3,00<br />
- Berpengalaman minimal 1 tahun (Fresh graduate are welcome)<br />
- Menguasai Supply Chain Management<br />
- Familiar dengan Microsoft Office<br />
- Aktif, mampu berkomunikasi dengan baik, memiliki motivasi untuk<br />
berkembang, dapat bekerja dalam tim, dan mau bekerja di bawah tekanan<br />
Jika anda adalah orang yang dimaksud dalam criteria tersebut, silakan<br />
mengirim Curriculum Vitae beserta surat lamaran (Application Letter ) anda ke :<br />
hrd.sarinah@gmail.com<br />
informasi lebih lanjut dapat menghubungi : 081904988866 atau 085725863331<br />
*Paling lambat tanggal 24 Juni 2011</p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/uncategorized/lowongan-kerja-pt-bumi-sarinah-consulting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is HTML</title>
		<link>http://linkinpark.blog.ugm.ac.id/html-tutorial/dewi-dewi-jadi-mahadewi/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/html-tutorial/dewi-dewi-jadi-mahadewi/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 19:24:09 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[HTML Tutorial]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=157</guid>
		<description><![CDATA[If you wanna be web design or web coder, you must understand about HTML, PHP and SQL. In this article i wanna tell about who html work, and the definision of html. Html is code that builded the web page that we are visited. HTML, which stands for HyperText Markup Language, is the predominant markup [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_160" class="wp-caption alignnone" style="width: 285px"><img class="size-full wp-image-160" src="http://linkinpark.blog.ugm.ac.id/files/2010/04/HTML.png" alt="HTML" width="275" height="313" /><p class="wp-caption-text">HTML</p></div>
<p>If you wanna be web design or web coder, you must understand about HTML, PHP and SQL. In this article i wanna tell about who html work, and the definision of html. Html is code that builded the web page that we are visited. HTML, which stands for <em>HyperText Markup Language</em>, is the predominant markup language for web pages.</p>
<p>This is the simple example of HTML language.</p>
<p>&lt;!doctype html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Hello HTML&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;p&gt;Hello World!&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p>preview in your browser will show like this :</p>
<p>Hello World!</p>
<p>Title is will show in left top of your browser.</p>
<p>after you make the text above in notepad, you must save in your computer and give extension .html or .htm. and then you priview with youe browser (Mozilla, Google Chrome, IE, etc).</p>
<p>HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists etc as well as for links, quotes, and other items.It allows images and objects to be embedded and can be used to create interactive forms. It is written in the form of HTML elements consisting of &#8220;tags&#8221; surrounded by angle brackets within the web page content. It can include or can load scripts in languages such as JavaScript  which affect the behavior of HTML processors like Web browsers; and Cascading Style Sheets (CSS) to define the appearance and layout of text and other material. The W3C, maintainer of both HTML and CSS standards, encourages the use of CSS over explicit presentational markup.</p>
<p>[ Source: Wikipedia ]</p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/html-tutorial/dewi-dewi-jadi-mahadewi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Video About Basic HTML and CSS Tutorial</title>
		<link>http://linkinpark.blog.ugm.ac.id/video-tutorial/numb-versi-dangdut/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/video-tutorial/numb-versi-dangdut/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 06:33:50 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Video Tutorial]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=155</guid>
		<description><![CDATA[Today i surfing in youtube.com and find good video that tell about the basic of HTML and CSS tutorial. The duration off this video is 39 minutes and 20 seconds. In this video we will know how to use HTML language with simple step by step. Lets follow this link and see how HTML work. [...]]]></description>
			<content:encoded><![CDATA[<p>Today i surfing in <a href="http://www.youtube.com/">youtube.com</a> and find good video that tell about the basic of HTML and CSS tutorial. The duration off this video is 39 minutes and 20 seconds. In this video we will know how to use HTML language with simple step by step. Lets follow this link and see how HTML work.</p>
<p><a href="http://www.youtube.com/watch?v=GwQMnpUsj8I">http://www.youtube.com/watch?v=GwQMnpUsj8I</a></p>
<p>and this is some my recommendation to study about HTML and CSS and others.</p>
<p>Site that display HTML tutorial:</p>
<p><a href="http://www.w3schools.com/html/default.asp">http://www.w3schools.com/html/default.asp</a></p>
<p><a href="http://htmlsandbox.com/">http://htmlsandbox.com/</a> &lt;&#8212; HTML preview for study</p>
<p>Site that display HTML tutorial:</p>
<p><a href="http://www.w3schools.com/css/default.asp">http://www.w3schools.com/css/default.asp</a></p>
<p>Simple HTML/CSS Layout Examples:</p>
<p><a href="http://blog.html.it/layoutgala/">http://blog.html.it/layoutgala/</a></p>
<p><a href="http://www.code-sucks.com/css%20layouts/faux-css-layouts/">http://www.code-sucks.com/css%20layouts/faux-css-layouts/</a></p>
<p><a href="http://www.mycelly.com/">http://www.mycelly.com/</a></p>
<p><a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html">http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html</a></p>
<p>html forums<br />
<a href="http://groups.google.com/group/alt.html/topics?lnk=gschg">http://groups.google.com/group/alt.html/topics?lnk=gschg</a><br />
CSS Forums<br />
<a href="http://csscreator.com/forum">http://csscreator.com/?q=forum/</a></p>
<p>HTML Validator<br />
<a href="http://validator.w3.org/">http://validator.w3.org/</a></p>
<p>CSS Validator<br />
<a href="http://jigsaw.w3.org/css-validator/">http://jigsaw.w3.org/css-validator/</a></p>
<p>Some decent text editors<br />
<a href="http://www.contexteditor.org/">http://www.context.cx/</a><br />
<a href="http://www.pspad.com/">http://www.pspad.com/</a><br />
<a href="http://notepad-plus.sourceforge.net/uk/site.htm">http://notepad-plus.sourceforge.net/uk/site.htm</a><br />
<a href="http://www.jedit.org/">http://www.jedit.org/</a><br />
<a href="http://www.scintilla.org/SciTE.html">http://www.scintilla.org/SciTE.html</a><br />
<a href="http://www.notetab.com/">http://www.notetab.com/</a></p>
<p>my suggestion you dont forget to close your first anchor. See you again and the next tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/video-tutorial/numb-versi-dangdut/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some Free Blogengine Themes</title>
		<link>http://linkinpark.blog.ugm.ac.id/blogengine-themes/some-free-blogengine-themes/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/blogengine-themes/some-free-blogengine-themes/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 11:29:55 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Blogengine Themes]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=132</guid>
		<description><![CDATA[If you wanna download free theme for your blogengine, exactly you are in the correct place. he he he. Here you can download many themes of blogengine. Lets download now Extensive Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Left Sidebar Interlude Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Right Sidebar. This theme was [...]]]></description>
			<content:encoded><![CDATA[<p>If you wanna download free theme for your blogengine, exactly you are in the correct place. he he he. Here you can download many themes of blogengine. Lets download now <img src='http://linkinpark.blog.ugm.ac.id/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h2 style="text-align: center">Extensive Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/extensive.jpg"><img class="alignnone size-medium wp-image-133" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/extensive.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/extensive.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=extensive" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar</p>
<h2 style="text-align: center">Interlude Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/interlude.jpg"><img class="alignnone size-medium wp-image-134" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/interlude.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/interlude.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=interlude" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar. This theme was modified to suit the needs of BlogEngineTheme.com.</p>
<h2 style="text-align: center">Newspaper1.1 Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/newspaper11.jpg"><img class="alignnone size-medium wp-image-135" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/newspaper11.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/newspaper.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=newspaper1.1" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">Sapiens.net Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/sapiensnet.jpg"><img class="alignnone size-medium wp-image-136" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/sapiensnet.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/sapiensnet.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=sapiens.net" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">Scruffy Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/snapshotaspxscruffy.jpg"><img class="alignnone size-medium wp-image-137" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/snapshotaspxscruffy.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/scruffy.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=scruffy" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">StableStart Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/stablestart.jpg"><img class="alignnone size-medium wp-image-138" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/stablestart.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/stablestart.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=stablestart" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar.</p>
<h2 style="text-align: center">TechJunkie Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/techjunkie.jpg"><img class="alignnone size-medium wp-image-139" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/techjunkie.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/TechJunkie.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=techjunkie" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">TheGreenHouse Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/thegreenhouse.jpg"><img class="alignnone size-medium wp-image-140" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/thegreenhouse.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/thegreenhouse.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=thegreenhouse" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar.</p>
<h2 style="text-align: center">Triathlon Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/triathlon.jpg"><img class="alignnone size-medium wp-image-141" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/triathlon.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/triathlon.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=triathlon" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">WildNature Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/wildnature.jpg"><img class="alignnone size-medium wp-image-142" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/wildnature.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/wildnature.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=wildnature" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<p style="text-align: left">This posting taken from <a href="http://www.blogenginetheme.com/">blogenginetheme.com</a>. I just shared this theme for you all, so the themes not copyright by me.</p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/blogengine-themes/some-free-blogengine-themes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Download Amazing Blogengine Themes</title>
		<link>http://linkinpark.blog.ugm.ac.id/blogengine-themes/download-amazing-blogengine-themes/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/blogengine-themes/download-amazing-blogengine-themes/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 12:23:01 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Blogengine Themes]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=144</guid>
		<description><![CDATA[Here you can download many amazing blogengine themes. All content this page taken from blogenginetheme.com. All themes copyright by the creator and respector, i just shared it foy you BibleScholar Theme DOWNLOAD &#8211; PREVIEW BrightSide Theme DOWNLOAD &#8211; PREVIEW CoffeeHouse Theme DOWNLOAD &#8211; PREVIEW Discovery Theme DOWNLOAD &#8211; PREVIEW Envision Theme DOWNLOAD &#8211; PREVIEW]]></description>
			<content:encoded><![CDATA[<p>Here you can download many amazing blogengine themes. All content this page taken from <a href="http://www.blogenginetheme.com/">blogenginetheme.com</a>. All themes copyright by the creator and respector, i just shared it foy you <img src='http://linkinpark.blog.ugm.ac.id/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h2 style="text-align: center">BibleScholar Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/biblescholar.jpg"><img class="alignnone size-medium wp-image-145" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/biblescholar.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/biblescholar.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=biblescholar" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">BrightSide Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/brightside.jpg"><img class="alignnone size-medium wp-image-146" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/brightside.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/BrightSide.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=brightside" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">CoffeeHouse Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/coffeehouse.jpg"><img class="alignnone size-medium wp-image-147" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/coffeehouse.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/CoffeeHouse.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=coffeehouse" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Discovery Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/discovery.jpg"><img class="alignnone size-medium wp-image-148" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/discovery.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Discovery.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=discovery" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Envision Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/envision.jpg"><img class="alignnone size-medium wp-image-149" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/envision.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Envision.1.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=envision" target="_blank">PREVIEW</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/blogengine-themes/download-amazing-blogengine-themes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Absolutely Free Download BlogEngine Templates</title>
		<link>http://linkinpark.blog.ugm.ac.id/blogengine-themes/absolutely-free-download-blogengine-templates/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/blogengine-themes/absolutely-free-download-blogengine-templates/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 10:33:08 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Blogengine Themes]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=120</guid>
		<description><![CDATA[In this moment I wanna share blogengine themes absolutely free. I just distributed it, and all themes copyright not by me. Les enjoy it.. he he he.. Gluttony Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Left Sidebar Indigo Theme DOWNLOAD &#8211; PREVIEW Two Column, Side Navigation, Right Sidebar Leaves Theme DOWNLOAD &#8211; PREVIEW Three [...]]]></description>
			<content:encoded><![CDATA[<p>In this moment I wanna share blogengine themes absolutely free. I just distributed it, and all themes copyright not by me. Les enjoy it.. he he he..</p>
<h2 style="text-align: center">Gluttony Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/gluttony.jpg"><img class="alignnone size-medium wp-image-121" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/gluttony.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Gluttony.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Gluttony" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar</p>
<h2 style="text-align: center">Indigo Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/indigo.jpg"><img class="alignnone size-medium wp-image-122" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/indigo.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Indigo.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Indigo" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Side Navigation, Right Sidebar</p>
<h2 style="text-align: center">Leaves Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/leaves.jpg"><img class="alignnone size-medium wp-image-123" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/leaves.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/leaves.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=leaves" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Side Navigation, Right Sidebar, Left Sidebar.</p>
<h2 style="text-align: center">MarketPlace Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/marketplace.jpg"><img class="alignnone size-medium wp-image-124" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/marketplace.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/MarketPlace1-0.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=MarketPlace" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Top Navigation, Right Sidebar, Left Sidebar.</p>
<h2 style="text-align: center">MWRT-002 Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/mwrt-002.jpg"><img class="alignnone size-medium wp-image-125" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/mwrt-002.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/MWRT-002.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=mwrt-002" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">NaturalEssence.1.0 Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/naturalessence10.jpg"><img class="alignnone size-medium wp-image-126" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/naturalessence10.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/NaturalEssence.1.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=naturalessence.1.0" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">NonZero Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/nonzero.jpg"><img class="alignnone size-medium wp-image-127" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/nonzero.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/NonZero.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=NonZero" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">Stargazer Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/stargazer.jpg"><img class="alignnone size-medium wp-image-128" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/stargazer.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/StarGazer.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=stargazer" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<h2 style="text-align: center">SwanDive Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/swandive.jpg"><img class="alignnone size-medium wp-image-129" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/swandive.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/swandive.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=swandive" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Side Navigation, Right Sidebar.</p>
<h2 style="text-align: center">TerraFirma Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/terrafirma.jpg"><img class="alignnone size-medium wp-image-130" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/terrafirma.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/terrafirma.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=terrafirma" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<p style="text-align: left">all content in this posting taken from <a href="http://www.blogenginetheme.com/">blogenginetheme.com</a>.</p>
<p style="text-align: left">SELAMAT ULANG TAHUN INDONESIAKU. INDONESIA KITA SEMUA. JAYA TERUS INDONESIAKU. WE LOVE INDONESIA.</p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/blogengine-themes/absolutely-free-download-blogengine-templates/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BlogEngine Themes Download Again</title>
		<link>http://linkinpark.blog.ugm.ac.id/blogengine-themes/blogengine-themes-download-again/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/blogengine-themes/blogengine-themes-download-again/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 09:03:27 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Blogengine Themes]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=106</guid>
		<description><![CDATA[In this posting I wanna share some Blogengine themes again. Happy enjoy this templates design. This posting taken from blogenginetheme.com. I just wanna share to you all he he he. Thank You. BluePigment Theme DOWNLOAD &#8211; PREVIEW Clarity Theme DOWNLOAD &#8211; PREVIEW CuriouslyGreen Theme DOWNLOAD &#8211; PREVIEW DarkBlog Theme DOWNLOAD &#8211; PREVIEW Dirtylicious Theme DOWNLOAD [...]]]></description>
			<content:encoded><![CDATA[<p>In this posting I wanna share some Blogengine themes again. Happy enjoy this templates design. This posting taken from <a href="http://www.blogenginetheme.com/">blogenginetheme.com</a>. I just wanna share to you all he he he. Thank You.</p>
<h2 style="text-align: center">BluePigment Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/bluepigment.jpg"><img class="alignnone size-medium wp-image-107" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/bluepigment.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/BluePigment.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=BluePigment" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Clarity Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/clarity.jpg"><img class="alignnone size-medium wp-image-108" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/clarity.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Clarity.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Clarity" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">CuriouslyGreen Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/curiouslygreen.jpg"><img class="alignnone size-medium wp-image-109" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/curiouslygreen.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/CuriouslyGreen.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=CuriouslyGreen" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">DarkBlog Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/darkblog.jpg"><img class="alignnone size-medium wp-image-110" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/darkblog.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/DarkBlog1.0.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=DarkBlog" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Dirtylicious Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/dirtylicious.jpg"><img class="alignnone size-full wp-image-111" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/dirtylicious.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Dirtylicious.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Dirtylicious" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Fruity Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/fruity.jpg"><img class="alignnone size-full wp-image-112" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/fruity.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/fruity.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=fruity" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">GirlGeek Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/girlgeek.jpg"><img class="alignnone size-medium wp-image-113" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/girlgeek.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/GirlGeek.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=GirlGeek" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Inove Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/inove.jpg"><img class="alignnone size-medium wp-image-114" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/inove.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/inove.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=inove" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">Paalam Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/paalam.jpg"><img class="alignnone size-medium wp-image-115" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/paalam.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Paalam.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Paalam" target="_blank">PREVIEW</a></p>
<p style="text-align: center">
<h2 style="text-align: center">PortraitPress Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/portraitpress.jpg"><img class="alignnone size-medium wp-image-116" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/portraitpress.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/portraitpress.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=PortraitPress" target="_blank">PREVIEW</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/blogengine-themes/blogengine-themes-download-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Downloads BlogEngine Themes Collections</title>
		<link>http://linkinpark.blog.ugm.ac.id/blogengine-themes/downloads-blogengine-themes-collections/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/blogengine-themes/downloads-blogengine-themes-collections/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 08:14:40 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Blogengine Themes]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=94</guid>
		<description><![CDATA[Let&#8217;s downloads this my free Blogengine themes collecions without pay or free. As you know, all themes here copyrigh by the creator. I just shared it and taken from blogenginetheme.com. Aquaria Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Left Sidebar Desk-Mess Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Right Sidebar Dilectio Theme DOWNLOAD [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s downloads this my free Blogengine themes collecions without pay or free. As you know, all themes here copyrigh by the creator. I just shared it and taken from <a href="http://www.blogenginetheme.com/">blogenginetheme.com</a>.</p>
<h2 style="text-align: center">Aquaria Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/aquaria.jpg"><img class="alignnone size-medium wp-image-95" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/aquaria.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/aquaria.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Aquaria" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar</p>
<h2 style="text-align: center">Desk-Mess Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/desk-mess.jpg"><img class="alignnone size-medium wp-image-96" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/desk-mess.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/desk-mess.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Desk-Mess" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<h2 style="text-align: center">Dilectio Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/dilectio.jpg"><img class="alignnone size-medium wp-image-97" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/dilectio.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Dilectio.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Dilectio" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Top Navigation, Right Sidebar</p>
<h2 style="text-align: center">FreshCitrus Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/freshcitrus.jpg"><img class="alignnone size-medium wp-image-98" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/freshcitrus.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/freshcitrus.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=FreshCitrus" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<h2 style="text-align: center">GardenBee Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/gardenbee.jpg"><img class="alignnone size-medium wp-image-99" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/gardenbee.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/GardenBee.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=GardenBee" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Side Navigation, Left Sidebar, Right Sidebar</p>
<h2 style="text-align: center">iTheme Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/itheme.jpg"><img class="alignnone size-medium wp-image-100" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/itheme.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/iTheme.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=itheme" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<h2 style="text-align: center">MSDNStyle Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/msdnstyle.jpg"><img class="alignnone size-medium wp-image-101" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/msdnstyle.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/MsdnStyle.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=MSDNStyle" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar</p>
<h2 style="text-align: center">Notepad-Chaos Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/notepad-chaos.jpg"><img class="alignnone size-medium wp-image-102" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/notepad-chaos.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/notepad-chaos.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Notepad-Chaos" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<h2 style="text-align: center">Paperclip-Cactus Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/paperclip-cactus.jpg"><img class="alignnone size-medium wp-image-103" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/paperclip-cactus.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Paperclip-Cactus.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Paperclip-Cactus" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar</p>
<h2 style="text-align: center">Unqualified Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/unqualified.jpg"><img class="alignnone size-medium wp-image-104" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/unqualified.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/unqualified.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Unqualified" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Side Navigation, Right Sidebar</p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/blogengine-themes/downloads-blogengine-themes-collections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Download BlogEngine Theme</title>
		<link>http://linkinpark.blog.ugm.ac.id/blogengine-themes/free-download-blogengine-theme/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/blogengine-themes/free-download-blogengine-theme/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 07:58:18 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Blogengine Themes]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=81</guid>
		<description><![CDATA[Here you can downloads free blogengine themes that created by the creator and respector, and i just distibuted it. This themes collection I taken from blogenginetheme.com. Thanks for visiting in this blog. Angel Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Right Sidebar BlackHeart Theme DOWNLOAD &#8211; PREVIEW Two Column, Top Navigation, Right Sidebar. Cogitation [...]]]></description>
			<content:encoded><![CDATA[<p>Here you can downloads free blogengine themes that created by the creator and respector, and i just distibuted it. This themes collection I taken from <a href="http://www.blogenginetheme.com/">blogenginetheme.com</a>. Thanks for visiting in this blog.</p>
<h2 style="text-align: center">Angel Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/angel1.jpg"><img class="alignnone size-medium wp-image-83" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/angel1.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/angel.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=angel" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<p style="text-align: center">
<h2 style="text-align: center">BlackHeart Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/blackheart.jpg"><img class="alignnone size-medium wp-image-84" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/blackheart.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/BlackHeart.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=BlackHeart" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<p style="text-align: center">
<h2 style="text-align: center">Cogitation Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/cogitation.jpg"><img class="alignnone size-medium wp-image-85" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/cogitation.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/Cogitation.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=Cogitation" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Left Sidebar.</p>
<p style="text-align: center">
<h2 style="text-align: center">Darkside Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/darkside.jpg"><img class="alignnone size-medium wp-image-86" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/darkside.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/DarkBlog1.0.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=darkside" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<p style="text-align: center">
<h2 style="text-align: center">GreyShadow Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/greyshadow.jpg"><img class="alignnone size-medium wp-image-87" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/greyshadow.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/GreyShadow.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=greyshadow" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<p style="text-align: center">
<h2 style="text-align: center">i3Theme Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/i3theme.jpg"><img class="alignnone size-medium wp-image-88" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/i3theme.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/i3Theme.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=i3Theme" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Top Navigation, Right Sidebar, Left Sidebar</p>
<p style="text-align: center">
<h2 style="text-align: center">Illacrimo Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/illacrimo.jpg"><img class="alignnone size-medium wp-image-89" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/illacrimo.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/illacrimo.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=illacrimo" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Three Column, Top Navigation, Right Sidebar</p>
<p style="text-align: center">
<h2 style="text-align: center">MeanGreenTea Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/meangreentea.jpg"><img class="alignnone size-medium wp-image-90" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/meangreentea.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/MeanGreenTea.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=MeanGreenTea" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar.</p>
<p style="text-align: center">
<h2 style="text-align: center">Stardust Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/stardust.jpg"><img class="alignnone size-medium wp-image-91" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/stardust.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/stardust.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=stardust" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<p style="text-align: center">
<h2 style="text-align: center">Vertigo2 Theme</h2>
<p style="text-align: center"><a href="http://linkinpark.blog.ugm.ac.id/files/2009/07/vertigo2.jpg"><img class="alignnone size-medium wp-image-92" src="http://linkinpark.blog.ugm.ac.id/files/2009/07/vertigo2.jpg" alt="" width="202" height="152" /></a></p>
<p style="text-align: center"><a href="http://idris.web.ugm.ac.id/free-download/vertigo2_v3.zip" target="_blank">DOWNLOAD</a> &#8211; <a href="http://preview.blogenginetheme.com/?theme=vertigo2" target="_blank">PREVIEW</a></p>
<p style="text-align: center">Two Column, Top Navigation, Right Sidebar</p>
<p style="text-align: center">
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/blogengine-themes/free-download-blogengine-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Mike Shinoda</title>
		<link>http://linkinpark.blog.ugm.ac.id/uncategorized/about-mike-shinoda/</link>
		<comments>http://linkinpark.blog.ugm.ac.id/uncategorized/about-mike-shinoda/#comments</comments>
		<pubDate>Thu, 07 May 2009 02:29:25 +0000</pubDate>
		<dc:creator>wibby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linkinpark.blog.ugm.ac.id/?p=68</guid>
		<description><![CDATA[Mike Shinoda Michael Kenji Shinoda, atau lebih dikenal sebagai Mike Shinoda atau Mike (lahir tanggal 11 Februari 1977 di Agoura, California) adalah seorang pentolan grup musik rock Amerika, Linkin Park. Di Linkin Park, Mike berperan sebagai emcee (rapper), kadang kibordis dan kadang gitaris. Ayah Mike Shinoda seorang keturunan Jepang, dan ibunya berdarah Amerika Asli (Indian)—bukan [...]]]></description>
			<content:encoded><![CDATA[<h2>Mike Shinoda</h2>
<p>Michael Kenji Shinoda, atau lebih dikenal sebagai <strong>Mike Shinoda</strong> atau <strong>Mike</strong> (lahir tanggal 11 Februari 1977 di Agoura, California) adalah seorang pentolan grup musik rock Amerika, <a href="http://linkinpark.blog.ugm.ac.id/">Linkin Park</a>. Di Linkin Park, Mike berperan sebagai emcee (rapper), kadang kibordis dan kadang gitaris.</p>
<p>Ayah Mike Shinoda seorang keturunan Jepang, dan ibunya berdarah Amerika Asli (Indian)—bukan keturunan Rusia seperti disebutkan di beberapa media. Mike mempunyai seorang kakak laki-laki bernama Jason.<br />
Perkenalan dengan musik</p>
<p>Mike Shinoda menghabiskan masa kecilnya di Agoura. Perkenalan pertamanya dengan musik yaitu lewat musik klasik. Mike belajar piano klasik selama 10 tahun. Karena bosan, kemudian dia beralih ke Jazz. Setelah dari jazz, Mike beralih ke hip-hop. Perkenalannya dengan hip-hop yaitu melalui teman-temannya. Setelah menonton konser Anthrax dan Public Enemy, Mike memutuskan dirinya untuk hidup sebagai musisi. Kemudian dia belajar rapping dan membuat lirik lagu saat umur 14 tahun.</p>
<h2>Peran Mike dalam Linkin Park</h2>
<p>* Mike sangat berperan dalam unsur hip-hop Linkin Park. Mike menulis lirik lagu bersama Chester, dan juga sebagai kibordis dan gitaris. Mike juga mengarahkan teman-temannya, dan dapat menyatukan sesama anggota Linkin Park, sehingga disebut ‘The Glue’.<br />
* Mike mendisain cover album Linkin Park yang pertama, Hybrid Theory.<br />
* Mike memproduseri semua album, kecuali Hybrid Theory dan Meteora. Album-album yang diproduseri Mike yaitu, Reanimation, Linkin Park Live In Texas, dan Collision Course, yaitu kolaborasi antara Linkin Park dengan Jay Z. Sedangkan, Hybrid Theory dan Meteora diproduseri oleh Don Gilmore.<br />
* Mike sering mengurusi <a href="http://www.linkinpark.com/">website Linkin Park</a> dan menjawab pertanyaan-pertanyaan dari fans.<br />
* Mike salah satu yang mempelopori Projekt Revolution (tur bersama Static X, dll di Amerika Serikat) dan juga Collision Course.</p>
<h2>Fakta-Fakta Lain Mengenai Mike Shinoda</h2>
<p>* Mike ahli dalam ilustrasi tapi belajar banyak disain grafik.<br />
* Mike mempunyai istri bernama Anna Lovejoy.<br />
* Mike harus mengerjakan tugas akhirnya di Pasadena Art College dalam minggu yang sama dengan waktu Linkin Park musti melakukan pertunjukan untuk 6 label rekaman.<br />
* Mike mendapat pekerjaan sebagai disainer grafik setelah lulus dari universitas.<br />
* Pertama kali Mike mendengar ‘One Step Closer’ di radio yaitu ketika di Arizona.<br />
* Mike mendisain logo untuk album Styles Of Beyond, 2000 Fold CD.<br />
* Mike menggunakan gitar Paul Reed Smith CE-22.<br />
* Mike fans berat Dido. Mike juga memfavoritkan segudang penyanyi wanita seperti, Kittie, Madonna, dan Sneaker.<br />
* Mike sering membantu Brad Delson dalam mengadakan makan malam bagi para gelandangan setiap natal.<br />
* Mike juga mengerjakan beats dan sample untuk Linkin Park</p>
<h2>Fort Minor</h2>
<p>Ketika Linkin Park sedang vakum, Mike memutuskan untuk membuat solo projek hip-hopnya bernama Fort Minor. Fort bermakna kuat, sedangkan minor bermakna lemah, mengutip dari Mike, “Minor dalam musik biasanya lebih ‘gelap’ daripada kunci mayor&#8221;. Di solo projek ini, Mike tidak sendirian. Dia ditemani Styles of Beyond, yaitu Ryu, Tak, dan DJ Cheapshot. Fort Minor lalu merilis album pertama mereka yaitu The Rising Tied. Banyak artis yang mereka undang dalam album ini, seperti Holly Brook dan Jonah Matranga dalam singel “Where’d You Go?”, Black Thought dalam “Right Now”, Common dalam “Back Home”, dan dengan John Legend dalam “High Road”. Album ini diproduseri oleh Jay Z. “Believe Me” menceritakan sebuah persahabatan yang hancur dengan bebunyian perkusi Latin oleh Bobo. Mike menyimpulkan kesuksesan ala formulanya sendiri dalam “Remember The Name” dengan ungkapan ‘10 persen keberuntungan, 20 persen keahlian, 15 persen konsentrasi dan kekuatan dari keinginan, 5 persen kesenangan, 50 persen beban, dan 100 persen alasan untuk mengingat namanya.’ Lagu “Right Now” diadaptasi dari film Short Cuts oleh Robert Altman. Mike menulis lagu “Where’d You Go?” yang terinspirasi dari istrinya yang sering ia tinggalkan karena pekerjaannya. Mike berkata, setiap kali istrinya mendengar lagu itu, ia selalu menangis. Setelah mengunjungi Museum Nasional Jepang-Amerika Serikat, Mike lalu menulis lagu ‘Kenji’ yang bercerita tentang keluarganya ketika Perang Dunia II, yang diasingkan ke sebuah tempat karena mereka adalah orang Jepang.</p>
<h2>Jiwa sosial</h2>
<p>Mike juga sering mengikuti bakti sosial atau amal. Dia memberikan beasiswa bagi murid di sekolahnya terdahulu. Mike juga mengikuti organisasi sosial, seperti United Way, AIDS Project L.A., Densho, Japanese American National Museum, Arthritis Foundation, dan Make-A-Wish Foundation. Tahun 2004, Mike mendirikan organisasi untuk membangun kembali Asia Tenggara karena tsunami, bernama Musis For Relief, Linkin Park mengadakan konser di Los Angeles yang langsung terjual habis untuk korban tsunami, dan menghasilkan lebih dari 2 juta dolar Amerika.</p>
<p>artikel ini diambil dari <a href="http://id.wikipedia.org/wiki/Mike_Shinoda">wikipedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://linkinpark.blog.ugm.ac.id/uncategorized/about-mike-shinoda/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

