<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kangtanto | Web Development</title>
	
	<link>http://kangtanto.com</link>
	<description>My Passion : Programming &gt; Design || Design &gt; Programming</description>
	<lastBuildDate>Sun, 12 Feb 2012 20:35:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kangtanto" /><feedburner:info uri="kangtanto" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>kangtanto</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Create Facebook Timeline Using HTML and CSS Only</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/s4Fn1yNzFgI/create-facebook-timeline-using-html-and-css-only</link>
		<comments>http://kangtanto.com/tutorial/create-facebook-timeline-using-html-and-css-only#comments</comments>
		<pubDate>Sun, 12 Feb 2012 20:22:13 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=486</guid>
		<description><![CDATA[By the end of 2011 Facebook introduced timeline to tell the story of your life. Of course not really the entire of your life, just a life that starting from the day you become the member of Facebook. There are people like or dislike this new feature. Some say that they don&#8217;t want people to [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/tutorial/create-facebook-timeline-using-html-and-css-only"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>By the end of 2011 Facebook introduced timeline to tell the story of your life. Of course not really the entire of your life, just a life that starting from the day you become the member of Facebook. There are people like or dislike this new feature. Some say that they don&#8217;t want people to see his whole life story in Facebook , although there is a feature to hide part of your post. In this post I am going to show you how to create your own Facebook timeline using HTML and CSS only. You can use the timeline to show your activity during a year or to tell the story of your life on your personal web page.</p>
<h3 style="text-align: center;"><strong><a title="create facebook timeline" href="http://www.kangtanto.com/demos/timeline/" target="_blank">Demo</a> <a title="download facebook timeline tutorial" href="http://www.box.com/s/9l7md4all5h969nsxo04" target="_blank">Download </a></strong></h3>
<p>The first step, I create the HTML code that consist of list. I use OL and then detect which one is even or odd. Then I use CSS to float one of them to the right. I also use a small blue images as the background of  OL to create the vertical line. Here is the HTML code.<br />
<script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-9574801367811077"; /* iklan bawah */ google_ad_slot = "9991672789"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
<p><pre class="brush: xml">&lt;ol id=&quot;timeline&quot;&gt;

  &lt;li&gt; 
    &lt;div class=&quot;time&quot;&gt;Yesterday&lt;/div&gt;
    &lt;span class=&quot;corner&quot;&gt;&lt;/span&gt;
    &lt;p&gt;just had a lunch ...&lt;br/&gt;
&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;
    &lt;div class=&quot;time&quot;&gt;about an hour ago&lt;/div&gt;
    &lt;span class=&quot;corner&quot;&gt;&lt;/span&gt;
    &lt;p&gt;play football&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;
    &lt;div class=&quot;time&quot;&gt;Monday&lt;/div&gt;
    &lt;span class=&quot;corner&quot;&gt;&lt;/span&gt;
    &lt;p&gt;Have a nice hot chocolate in the morning&lt;/p&gt;
  &lt;/li&gt;

  &lt;li&gt;
    &lt;div class=&quot;time&quot;&gt;Yesterday&lt;/div&gt;
    &lt;span class=&quot;corner&quot;&gt;&lt;/span&gt;
    &lt;p&gt; learn css
    &lt;/p&gt;
  &lt;/li&gt;
&lt;/ol&gt;</pre></p>
<p>You can add more list if you want, the above code only have four list to make it easier to follow.</p>
<p>Then I create CSS for the OL and put an image as a background to create a vertical line. I put the background on the center and repeat the images on y-axis.<br />
<pre class="brush: css">#timeline{
    width:800px; 
    list-style-type: none; 
    background: url(timeline.png) top center repeat-y; 
    margin: 0 auto; 
    padding:20px; 
    margin-bottom:10px;
}</pre></p>
<p><strong>Left and Right Position</strong></p>
<p>Each post on your timeline is displayed to the right and left of the center line. If it odd list, then I float it to the right and put it on the left if it is even. I use nth-of-type to check the list whether it is odd or even. You can read my previous post on <a title="CSS3 Tutorial: Create a Simple List With Odd and Even Detection" href="http://kangtanto.com/web-2/css3-tutorial-create-a-simple-list-with-odd-and-even-detection" target="_blank">checking the odd or even on the list</a>.<br />
<pre class="brush: css">#timeline li{
    width:375px; -moz-border-radius:2px; border-radius:2px; webkit-border-radius:2px; border:1px solid #c3ccdf; padding:5px;background-color:#FFF;
}

#timeline li:nth-of-type(odd){
    clear: both;float:right; 
}

#timeline li:nth-of-type(odd), #timeline li:nth-of-type(even){
    margin:-10px 0 20px 0;
}</pre></p>
<p><strong>The Arrow</strong></p>
<p>Actually I don&#8217;t know what it is called, something that face to left and facing the vertical line if your post on the right. Let us call it the arrow. If your post on the left, then the arrow should face to the right to show to the timeline that it is your post. I use two images of arrow and use the same method to check the even or odd. If it is odd, then the post will float to the right so I should use the right arrow.<br />
<pre class="brush: css">#timeline li:nth-of-type(even) .corner{
	position:absolute; display:block; margin-left:380px;width:20px;	height:15px;background:url(right.png);
}
#timeline li:nth-of-type(odd) .corner{
	position:absolute;display:block;margin-left:-25px;width:20px;height:15px;background:url(left.png);
}</pre></p>
<p><strong>Final Result</strong></p>
<p>By the end of this post, you should get the result like the image below. Of course I add more code to create the header. You can get the header on the <a href="http://www.box.com/s/9l7md4all5h969nsxo04" target="_blank">download </a>version.</p>
<p><a href="http://www.kangtanto.com/demos/timeline/"><img class="alignnone" title="create Facebook timeline tutorial" src="http://img834.imageshack.us/img834/4994/timeline2.png" alt="timeline2 Create Facebook Timeline Using HTML and CSS Only" width="412" height="390" /></a></p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/kangtanto/~4/s4Fn1yNzFgI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/tutorial/create-facebook-timeline-using-html-and-css-only/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://kangtanto.com/tutorial/create-facebook-timeline-using-html-and-css-only</feedburner:origLink></item>
		<item>
		<title>CSS3 Tutorial: Create a Simple List With Odd and Even Detection</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/-J01khnJdmU/css3-tutorial-create-a-simple-list-with-odd-and-even-detection</link>
		<comments>http://kangtanto.com/web-2/css3-tutorial-create-a-simple-list-with-odd-and-even-detection#comments</comments>
		<pubDate>Wed, 08 Feb 2012 16:26:59 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[css3 tutorial]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=481</guid>
		<description><![CDATA[Information inside a table or a list needs to be displayed in such a way so it will be easier to read. Most of us will use the same method when we display information inside table or list. We usually choose two color for example grey and white and put them as background on each [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/web-2/css3-tutorial-create-a-simple-list-with-odd-and-even-detection"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Information inside a table or a list needs to be displayed in such a way so it will be easier to read. Most of us will use the same method when we display information inside table or list. We usually choose two color for example grey and white and put them as background on each row. In the old times I will use PHP to detect between odd and even row, for example I will use grey as a background color for an even row and white for odd. Today we can use CSS3 to detect odd and even row and we can put different style on each one.</p>
<p>We will use <span style="color: #003366;"><em>nth-of-type(n)</em></span> to detect odd and even row. This selector is one of new selector in CSS3 that will matches every element that is the nth child. This selector accept one argument, n, which can be an expression, a number or an expression of the form an+b. One of the expression is <em>odd </em>and <em>even</em>.</p>
<p>In this tutorial, we will create a list using ordered list(ol) and we will use nth-of-type(n) to detect the row. It is very simple and you can use your imagination to put the same method on different style.</p>
<p><strong>The Code</strong></p>
<p>First we create our HTML code<br />
<pre class="brush: xml">&lt;h3&gt;Country In Asia&lt;/h3&gt;
&lt;ol id=&quot;countrylist&quot;&gt;
&lt;li&gt;Indonesia&lt;/li&gt;
&lt;li&gt;Singapore&lt;/li&gt;
&lt;li&gt;Malaysia&lt;/li&gt;
&lt;li&gt;Thailand&lt;/li&gt;
&lt;li&gt;China&lt;/li&gt;
&lt;li&gt;Japan&lt;/li&gt;
&lt;/ol&gt;  </pre></p>
<p>Then we put this style on our document<br />
<pre class="brush: css"> #countrylist{
        list-style-type: none; width: 200px; border:1px solid #c4cde0; border-radius:5px; margin: 0; padding: 0px; font-size: 12px;
    }
    #countrylist li{
        padding:5px;
    }
    #countrylist li:nth-of-type(even){
        background-color: #c4cde0;
    }</pre></p>
<p>At the end you should get this result</p>
<p><img class="alignnone" title="css3 tutorial" src="http://img208.imageshack.us/img208/2035/html5list.png" alt="html5list CSS3 Tutorial: Create a Simple List With Odd and Even Detection" width="224" height="213" /></p>
<p><strong>Browser Support</strong></p>
<p>The nth-of-type selector is supported is major modern browser like IE, Mozilla Firefox, Chrome, Opera etc. Here is the detail:</p>
<p>IE: IE8 and earlier are not supported this selector</p>
<p>Firefox: Firefox 3.5 support this selector</p>
<p>Opera: Opera 9.5 support this selector</p>
<p>Chrome: Chrome 2 support this selector</p>
<p>&nbsp;<br />
<script type="text/javascript"><!--
			google_ad_client = "ca-pub-9574801367811077";
			/* iklan bawah */
			google_ad_slot = "9991672789";
			google_ad_width = 468;
			google_ad_height = 60;
			//-->
			</script><br />
			<script type="text/javascript"
			src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
			</script></p>
<img src="http://feeds.feedburner.com/~r/kangtanto/~4/-J01khnJdmU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/web-2/css3-tutorial-create-a-simple-list-with-odd-and-even-detection/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://kangtanto.com/web-2/css3-tutorial-create-a-simple-list-with-odd-and-even-detection</feedburner:origLink></item>
		<item>
		<title>Inspirations: 10 Best and Fresh Single Page Website</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/-Mpt-2kYuGU/inspirations-10-best-and-fresh-single-page-website</link>
		<comments>http://kangtanto.com/web-2/inspirations-10-best-and-fresh-single-page-website#comments</comments>
		<pubDate>Mon, 06 Feb 2012 23:46:22 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=474</guid>
		<description><![CDATA[Single page website become popular today. Most of them are used as personal home page and display their work. Others used by small company. These list provides you with ten best single page web page that you can use as your inspirations. Check them out. Chleon Chleon builds platform for cars to keep the driver [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/web-2/inspirations-10-best-and-fresh-single-page-website"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Single page website become popular today. Most of them are used as personal home page and display their work. Others used by small company. These list provides you with ten best single page web page that you can use as your inspirations. Check them out.</p>
<p><a href="http://www.chleon.com/" target="_blank"><span style="color: #993300;"><strong>Chleon</strong></span></a><br />
Chleon builds platform for cars to keep the driver save and entertained. Their website use yellow as their main color and put navigation on top of their page. When you click one of them, it will scroll down to the area of the link you clicked.</p>
<p><a href="http://www.chleon.com/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img577.imageshack.us/img577/3842/chleon.png" alt="chleon Inspirations: 10 Best and Fresh Single Page Website" width="555" height="306" /></a></p>
<p><span style="color: #993300;"><strong><a href="http://www.andypatrickdesign.com/" target="_blank">Andy Patrick Design</a></strong></span></p>
<p>What I love from Andy&#8217;s website is his idea on his web page. When you scroll down the page, there is an image of a plane will follow the page down and there is a line behind the plane as to show you the plane flies from an island to the destination in the bottom of the page.</p>
<p><a href="http://www.andypatrickdesign.com/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img707.imageshack.us/img707/668/andyp.png" alt="andyp Inspirations: 10 Best and Fresh Single Page Website" width="400" height="358" /></a></p>
<p>&nbsp;</p>
<p><a href="http://tamcai.com/free/" target="_blank"><span style="color: #993300;"><strong>Tamcai</strong></span></a></p>
<p>Thamcai has a great idea by connecting each area with a dotted line. They do not put any single link on top of their page besides their home page link and their social media link. You have to scroll down to see more information about them.</p>
<p><a href="http://tamcai.com/free/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img195.imageshack.us/img195/4866/thamchai.png" alt="thamchai Inspirations: 10 Best and Fresh Single Page Website" width="500" height="291" /></a></p>
<p><a href="http://www.pixelhubcreative.com/" target="_blank"><span style="color: #993300;"><strong>Pixelhub</strong></span></a></p>
<p><a href="http://www.pixelhubcreative.com/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img813.imageshack.us/img813/5362/pixelhub.png" alt="pixelhub Inspirations: 10 Best and Fresh Single Page Website" width="500" height="295" /></a></p>
<p><a href="http://rubybots.com/" target="_blank"><span style="color: #993300;"><strong>RubyBots</strong></span></a></p>
<p><a href="http://rubybots.com/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img714.imageshack.us/img714/1899/rubybots.png" alt="rubybots Inspirations: 10 Best and Fresh Single Page Website" width="500" height="300" /></a></p>
<p><a href="http://www.launchfactory.org/" target="_blank"><span style="color: #993366;"><strong>Launch Factory</strong></span></a></p>
<p><a href="http://www.launchfactory.org/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img846.imageshack.us/img846/3296/launchfactory.png" alt="launchfactory Inspirations: 10 Best and Fresh Single Page Website" width="500" height="428" /></a></p>
<p><a href="http://mediapointstudios.com/" target="_blank"><span style="color: #993366;"><strong>Media Point</strong></span></a></p>
<p><a href="http://mediapointstudios.com/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img11.imageshack.us/img11/1406/mediapoint.jpg" alt="mediapoint Inspirations: 10 Best and Fresh Single Page Website" width="500" height="322" /></a></p>
<p><a href="http://arboltextual.com/" target="_blank"><span style="color: #993366;"><strong>Arbol Textual</strong></span></a></p>
<p><a href="http://arboltextual.com/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img577.imageshack.us/img577/8213/rboltextual.png" alt="rboltextual Inspirations: 10 Best and Fresh Single Page Website" width="500" height="328" /></a></p>
<p><a href="http://www.dylanjones.com.au/" target="_blank"><span style="color: #993366;"><strong>Dylan Jones</strong></span></a></p>
<p><a href="http://www.dylanjones.com.au/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img856.imageshack.us/img856/2660/dylanf.png" alt="dylanf Inspirations: 10 Best and Fresh Single Page Website" width="500" height="331" /></a></p>
<p><a href="http://www.lisher.net/" target="_blank"><span style="color: #993366;"><strong>Lisher</strong></span></a></p>
<p><a href="http://www.lisher.net/"><img class="alignnone" title="Inspiration: best ten single page website" src="http://img577.imageshack.us/img577/9149/lisher.png" alt="lisher Inspirations: 10 Best and Fresh Single Page Website" width="500" height="277" /></a></p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/web-2/inspirations-10-best-and-fresh-single-page-website" title="andypatrickdesign">andypatrickdesign</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/-Mpt-2kYuGU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/web-2/inspirations-10-best-and-fresh-single-page-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kangtanto.com/web-2/inspirations-10-best-and-fresh-single-page-website</feedburner:origLink></item>
		<item>
		<title>Removed Elements On HTML5</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/h35qVCq_WZ0/removed-elements-on-html5</link>
		<comments>http://kangtanto.com/web-2/removed-elements-on-html5#comments</comments>
		<pubDate>Sun, 05 Feb 2012 05:08:16 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[html5 tips]]></category>
		<category><![CDATA[web desain]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=472</guid>
		<description><![CDATA[HTML5 has become a hit today as its new elements and other new concept. What about the old elements? HTML5 has removed some old elements with some considerations. For example the presentational attribute such as background(for body element), bgcolor, align and border as they are better handled in CSS. There are other elements that also [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/web-2/removed-elements-on-html5"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>HTML5 has become a hit today as its new elements and other new concept. What about the old elements? HTML5 has removed some old elements with some considerations. For example the presentational attribute such as background(for body element), bgcolor, align and border as they are better handled in CSS. </p>
<p>There are other elements that also has removed by HTML5 such as big, center, font, basefont,s,strike,tt and u as they are more effectively represented in CSS. so goodbye to font and its attribute in HTML5. I still remember the old times when I was learning HTML in my college, I wrote lots of font and its attribute on my page. Even one of my friends web based application that still in use right now is using font and its attribute on many of its pages. His application was build around 2000.</p>
<p>One of elements that I don&#8217;t like so much is Frame. Thank god its been removed on HTML5 with other elements such as frameset and noframes. </p>
<p>There are elements that rarely been used by user for their page such as acronym,applet,isIndex and dir. To replace these elements HTML5 has object to replace applet, abbr for abbreviations, and the use of UL instead of isIndex or dir.</p>
<img src="http://feeds.feedburner.com/~r/kangtanto/~4/h35qVCq_WZ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/web-2/removed-elements-on-html5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kangtanto.com/web-2/removed-elements-on-html5</feedburner:origLink></item>
		<item>
		<title>HTML5 Tutorial: Create A Simple Layout With The New Elements</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/2hkGxIdhk9Q/html5-tutorial-create-a-simple-layout-with-the-new-elements</link>
		<comments>http://kangtanto.com/web-2/html5-tutorial-create-a-simple-layout-with-the-new-elements#comments</comments>
		<pubDate>Sun, 05 Feb 2012 00:25:04 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[html5 tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=468</guid>
		<description><![CDATA[HTML5 is currently under specification and in the Working Draft stage in W3c, but many its features are stable and can be implemented on most browsers. In this tutorial we will learn to create a very simple layout using HTML5 new elements and style the layout with css. Most of us usually use the same [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/web-2/html5-tutorial-create-a-simple-layout-with-the-new-elements"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>HTML5 is currently under specification and in the Working Draft stage in W3c, but many its features are stable and can be implemented on most browsers. In this tutorial we will learn to create a very simple layout using HTML5 new elements and style the layout with css.</p>
<p>Most of us usually use the same name for id or class in out layout. For example we use  &#8220;header&#8221; as the id name for header and &#8220;footer&#8221; as the id for footer and many more. take a look at the picture below</p>
<p><img class="aligncenter" title="html tutorial" src="http://img807.imageshack.us/img807/97/layoutup.png" alt="layoutup HTML5 Tutorial: Create A Simple Layout With The New Elements" width="411" height="284" /></p>
<p>This is the reason why some of new tag in HTML5 use that name. Ian Hickson has data mined billion of web pages to find the class or id name when he edit the specification and it worth to check his result here.</p>
<p>To create such a layout is very simple in HTML5. We will use some of new tag in HTML5 to replace div and its id name. Checkout the code below</p>
<p><pre class="brush: xml">&lt;!doctype html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
 &lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;wrapper&quot;&gt;
&lt;header&gt;&lt;/header&gt;
&lt;content&gt;
    &lt;article&gt;&lt;/article&gt;
&lt;/content&gt;
&lt;nav&gt;&lt;/nav&gt; 
&lt;footer&gt;&lt;/footer&gt;
&lt;/div&gt;  
&lt;/body&gt;
&lt;/html&gt;
</pre></p>
<p>As you can see on the code above, the doctype much simple, shorter and easy to remember. The doctype will specify that your HTML is HTML5 document.</p>
<p>Very simple right? It is quite possible that a question occur, how do we style the new element in CSS? all you need to do is to treat them as the other HTML element. You only need to write its tag like article,nav or content. Put css below between the open tag head and the closing tag of head.<br />
<pre class="brush: css"> &lt;style&gt;
 #wrapper{
    height:600px; width:900px; border:1px solid #eeeaf1;
 }
 header,nav,content,footer,article { margin: 5px;}
 header{
    height: 150px; background-color: #027d12;
 }
 nav {
    background-color: #4cad08; width:200px; height: 300px; 
 }
 content{ 
    float: right; width:680px;height: 300px;background-color: #4cad08; 
 }
 article{
    height: 100px; width: 670px; background-color: #8ebe00;
 }
 footer{
       clear: both; background-color: #4cad08;height: 100px; width: 890px;
 }
 &lt;/style&gt;</pre><br />
In HTML5 you only need to write &#8220;style&#8221; between the open and close tag to put CSS in your HTML5 document. Because it is assumed that when you write style, it means you will write CSS. It is no need to write other attributes.</p>
<p>There are many other new elements in HTML5 and I hope I can cover up on my next post.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/web-2/html5-tutorial-create-a-simple-layout-with-the-new-elements" title="tutorial html5">tutorial html5</a></li><li><a href="http://kangtanto.com/web-2/html5-tutorial-create-a-simple-layout-with-the-new-elements" title="tuttorial wordpress html5">tuttorial wordpress html5</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/2hkGxIdhk9Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/web-2/html5-tutorial-create-a-simple-layout-with-the-new-elements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kangtanto.com/web-2/html5-tutorial-create-a-simple-layout-with-the-new-elements</feedburner:origLink></item>
		<item>
		<title>CSS3 New Cursor Styles</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/BoD2kc6_qto/css3-new-cursor-styles</link>
		<comments>http://kangtanto.com/web-2/css-web-2/css3-new-cursor-styles#comments</comments>
		<pubDate>Wed, 25 Jan 2012 09:33:03 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[css3 cursor styles]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=461</guid>
		<description><![CDATA[Today HTML5 and CSS3 becomes a hit. The new elements in HTML5 and news styles in CSS3 has encourages us to try it on our website. CSS3 is evolving rapidly and you will find some interesting styles and will realize how easy it is to style something that was so hard before. One of the [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/web-2/css-web-2/css3-new-cursor-styles"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Today HTML5 and CSS3 becomes a hit. The new elements in HTML5 and news styles in CSS3 has encourages us to try it on our website. CSS3 is evolving rapidly and you will find some interesting styles and will realize how easy it is to style something that was so hard before.</p>
<p>One of the new styles is the cursor. In CSS2, we already know some of cursor styles, like: auto, inherit, crosshair, default,help, move, pointer,progress, text, wait, e-resize,n-resize,ne-resize, nw-resize, se-resize, sw-resize,s-resize and w-resize.</p>
<p>In CSS3 we have more cursor styles to choose. here is the list</p>
<ul>
<li>cursor: none (not IE, Safari, Opera)</li>
<li>cursor: context-menu (not Firefox, Chrome)</li>
<li>cursor: cell (not Safari)</li>
<li>cursor: vertical-text</li>
<li>cursor: alias (not Safari)</li>
<li>cursor: copy (not Safari)</li>
<li>cursor: no-drop</li>
<li>cursor: not-allowed</li>
<li>cursor: ew-resize</li>
<li>cursor: ns-resize</li>
<li>cursor: nesw-resize</li>
<li>cursor: nwse-resize</li>
<li>cursor: col-resize</li>
<li>cursor: row-resize</li>
<li>cursor: all-scroll</li>
</ul>
<p>These styles works in most latest popular browser like Mozilla, Chrome and Opera. In IE these styles work in IE9.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/web-2/css-web-2/css3-new-cursor-styles" title="new cursor">new cursor</a></li><li><a href="http://kangtanto.com/web-2/css-web-2/css3-new-cursor-styles" title="cursor:cell;">cursor:cell;</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/BoD2kc6_qto" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/web-2/css-web-2/css3-new-cursor-styles/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kangtanto.com/web-2/css-web-2/css3-new-cursor-styles</feedburner:origLink></item>
		<item>
		<title>Iseng-iseng Dapat Hadiah di Lomba Fotografi PENS</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/aVq_EShlGVk/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens</link>
		<comments>http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens#comments</comments>
		<pubDate>Fri, 20 Jan 2012 11:32:09 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[fotografi]]></category>
		<category><![CDATA[PENS]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=455</guid>
		<description><![CDATA[Dalam rangka Soft Launching Logo dan Hymne PENS, Politeknik Elektronika Negeri Surabaya(PENS) menggelar lomba fotografi yang diadakan sejak tanggal 10-12 Januari 2012. Lomba ini terbagi menjadi 3 kategori yaitu untuk profesional, mahasiswa dan civitas akademik(dosen dan karyawan). Sudah bisa ditebak kangtanto ikut di kategori mana. Tema lomba kali ini adalah PENS &#8211; Bridge to the [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Dalam rangka <a href="http://eepis-its.edu/id/read/9b82b60894810d7f5bba39bb7c856c78/soft-launching-logo-dan-hymne-pens">Soft Launching Logo dan Hymne PENS</a>, Politeknik Elektronika Negeri Surabaya(<a href="http://www.eepis-its.edu">PENS</a>) menggelar <a href="http://www.eepis-its.edu/lombafoto/blog.php">lomba fotografi</a> yang diadakan sejak tanggal 10-12 Januari 2012. Lomba ini terbagi menjadi 3 kategori yaitu untuk profesional, mahasiswa dan civitas akademik(dosen dan karyawan). Sudah bisa ditebak <a href="http://www.kangtanto.com">kangtanto</a> ikut di kategori mana. Tema lomba kali ini adalah PENS &#8211; Bridge to the future.</p>
<p>Berbekal senjata Nikon D80 dengan kesaktian fotografi yang masih dasar kangtanto pun ikut-ikutan hunting di sekitar area kampus. Kalau di analogikakan dalam dunia persilatan mungkin kesaktian fotografi kangtanto masih sebatas tahu kuda-kuda. Catat&#8230; sebatas tahu kuda-kuda yaitu belum bisa mempraktekan kuda-kuda karena masih sebatas tahu. Ya  kalau gini belum bisa dibilang sakti ya&#8230;. Jadi harap maklum melihat hasil jepretannya. Saat <a href="http://eepis-its.edu/id/read/37ad39c1f4046bc24ba443fb9bae50ce/pengumuman-pens-photography-competition">pengumuman hasil pemenang lomba </a>yang diselenggarakan berbarengan dengan acara soft launching(18/01), ternyata hasilnya diluar dugaan, yaitu hasil jepretan kangtanto nyantol di peringkat 3. Alhamdulillah, lumayan hadiah uang bisa buat mbeli ban sepeda motor baru.</p>
<p>Nah biar tidak penasaran, ini kangtanto cantumkan hasil para pemenang di ketiga kategori tersebut. Urutan tampilan sengaja saya taruh yang profesional dulu, biar mata-mata para pembaca terhibur dulu. Nah pas nanti di kategori civitas, terutama yang dapat peringkat 3, anda bisa tersenyum, tertawa sepuasnya atau malah kirim sms ke saya ngajak traktiran. Maksudnya kangtanto yang ditraktir.</p>
<p><strong>Kategori Profesional:</strong></p>
<div class="wp-caption alignnone" style="width: 409px"><img title="lomba fotografi PENS" src="http://img407.imageshack.us/img407/862/ockydwi.jpg" alt="ockydwi Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="399" height="261" /><p class="wp-caption-text">Ini juara 1 nya. Karya Ocky Dwi P.. yang di foto Robot Soccer nya PENS. Hadiahnya 2 jeti gan..</p></div>
<div class="wp-caption alignnone" style="width: 402px"><img title="lomba fotografi PENS" src="http://img521.imageshack.us/img521/1238/rezam.jpg" alt="rezam Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="392" height="260" /><p class="wp-caption-text">Ini juara 2 nya gan. Karya Reza M Fauzan. yang diambil lapangan basket gedung PENS. hadiahnya 1.5 jeti</p></div>
<div class="wp-caption alignnone" style="width: 410px"><img title="lomba fotografi PENS" src="http://img694.imageshack.us/img694/8821/faizaljohanatletiko.jpg" alt="faizaljohanatletiko Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="400" height="266" /><p class="wp-caption-text">Ini juara 3, Karya Faizal Johan K. Hadiahnya 1 jeti</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>Kategori Mahasiswa:</strong></p>
<div class="wp-caption alignnone" style="width: 404px"><img title="lomba fotografi PENS" src="http://img171.imageshack.us/img171/6481/idabagusmadeoka.jpg" alt="idabagusmadeoka Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="394" height="261" /><p class="wp-caption-text">Ini juara 1 nya gan.. oleh: Ida Bagus Made. hadiahnya 750 ribu.</p></div>
<div class="wp-caption alignnone" style="width: 228px"><img title="fotografi PENS" src="http://img714.imageshack.us/img714/7121/rizal.jpg" alt="rizal Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="218" height="329" /><p class="wp-caption-text">Ini juara 2 nya gan. Karya Rizal Rahardian... hadiahnya 500 rb</p></div>
<div class="wp-caption alignnone" style="width: 415px"><img title="fotografi PENS" src="http://img690.imageshack.us/img690/1553/puguhchristianto.jpg" alt="puguhchristianto Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="405" height="269" /><p class="wp-caption-text">Ini juara 3, oleh Puguh Christianto. Hadiahnya 250 ribu</p></div>
<p>&nbsp;</p>
<p>Kategori Civitas:</p>
<div class="wp-caption alignnone" style="width: 268px"><img title="fotografi PENS" src="http://img821.imageshack.us/img821/1186/akhmadalimudin.jpg" alt="akhmadalimudin Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="258" height="387" /><p class="wp-caption-text">Ini juara 1, oleh Akhmad Alimudin. Hadiahnya 750 ribu</p></div>
<div class="wp-caption alignnone" style="width: 411px"><img title="fotografi PENS" src="http://img718.imageshack.us/img718/8697/widisarinastiti.jpg" alt="widisarinastiti Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="401" height="267" /><p class="wp-caption-text">Ini juara 2, oleh Widi Sarinastiti. Hadiahnya 500 ribu</p></div>
<div class="wp-caption alignnone" style="width: 420px"><img title="Lomba fotografi PENS" src="http://img821.imageshack.us/img821/6651/dwisusantobaru.jpg" alt="dwisusantobaru Iseng iseng Dapat Hadiah di Lomba Fotografi PENS" width="410" height="274" /><p class="wp-caption-text">Nah ini dia yang peringkat 3..ssstt... ketawa-nya jangan keras-keras. nih foto diambil pas bang admin jaringan lagi mbenerin Access Point.  . Hadiahnya.. ah lupa belum diambil gan..</p></div>
<p>Untuk para juri sendiri terdiri dari dua orang profesional di bidang fotografi dan satu orang dosen PENS.</p>
<p>&nbsp;</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens" title="design lapangan basket">design lapangan basket</a></li><li><a href="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens" title="hadiah untuk lomba">hadiah untuk lomba</a></li><li><a href="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens" title="lomba foto couple 2012 di surabaya">lomba foto couple 2012 di surabaya</a></li><li><a href="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens" title="lomba fotografi dan robot">lomba fotografi dan robot</a></li><li><a href="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens" title="lomba fotografi pens">lomba fotografi pens</a></li><li><a href="http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens" title="widi sarinastiti">widi sarinastiti</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/aVq_EShlGVk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://kangtanto.com/my-work/iseng-iseng-dapat-hadiah-di-lomba-fotografi-pens</feedburner:origLink></item>
		<item>
		<title>Membuat Game 3D Sederhana Dengan Unity</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/uCexKZBC1mA/membuat-game-3d-sederhana-dengan-unity</link>
		<comments>http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity#comments</comments>
		<pubDate>Tue, 17 Jan 2012 09:20:09 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[3d game]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[unity]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=432</guid>
		<description><![CDATA[Game ini merupakan sebuah game yang mengambil tema tentang seekor kera yang berburu pisang pada area perkebunan. Kera tersebut harus mengambil pisang dengan jumlah tertentu untuk bisa memenangkan permainan. Proses pengambilan pisang akan menemui beberapa kesulitan mulai dari penempatan pohon pisang, perbedaan tinggi pohon pisang dan halangan-halangan yang lain. Karakter yang dikontrol pada game ini [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Game  ini merupakan sebuah game yang mengambil tema tentang seekor kera yang  berburu pisang pada area perkebunan. Kera tersebut harus mengambil  pisang dengan jumlah tertentu untuk bisa memenangkan permainan. Proses  pengambilan pisang akan menemui beberapa kesulitan mulai dari penempatan  pohon pisang, perbedaan tinggi pohon pisang dan halangan-halangan yang  lain.</p>
<p>Karakter  yang dikontrol pada game ini berupa seekor kera yang memiliki kemampuan  untuk berjalan, berlari, melompat dan memukul. Pisang dapat diambil  dengan menggunakan empat kemampuan yang dimiliki oleh kera tersebut. Awalnay sih memang ingin seekor kera, akan tetapi karena belum sakti di Blender atau dengan kata lain belum bisa mbikin karakter kera di Blender, maka akhirnya karakternya memakai Lerzp yang merupakan karakter dari contoh proyek game Unity. Kalau diliat bentuknya, yang mirip kera hanya mulutnya saja.</p>
<p>Ide  game ini diadopsi dari tema yang sama dari game 2D yang berjalan pada  sistem operasi  Android. Pembuatan game dalam bentuk 3D ini dimaksudkan  untuk memberikan pengalaman berbeda pada tema game yang sama sekaligus  menerapkan beberapa konsep dasar pada game 3D. Game ini dibangun dengan  menggunakan game engine Unity 3.4 versi free yang berjalan pada sistem  operasi Windows.</p>
<p style="text-align: center;"><img class="aligncenter" title="game 3d sederhana dengan unity" src="http://img252.imageshack.us/img252/9683/gameunity1.png" alt="gameunity1 Membuat Game 3D Sederhana Dengan Unity" width="483" height="213" /></p>
<p>Permainan  yang dibuat dimainkan dalam sebuah area yang terlihat seperti kebun  pisang. Dalam kebun tersebut terdapat pohon-pohon pisang yang buahnya  dapat diambil untuk mendapat point dan jika terambil dalam jumlah  tertentu, membuka pintu untuk mengakhiri level tersebut.</p>
<p>Penempatan pisang-pisang dalam area dibuat bervariasi agar terdapat tantangan bagi pemain. Selain penempatan yang bervariasi, diberikan pula rintangan yang menghambat pemain untuk mencapai pisang. Variasi penempatan berupa tinggi pohon dan posisi pohon yang memerlukan usaha tambahan untuk mencapainya. Rintangan  yang diberikan berupa pohon yang tertutup pagar dan memiliki pintu yang  terbuka dan tertutup secara berkala, unit yang menembaki karakter serta  jembatan angkat.</p>
<p>Tujuan  dari permainan adalah mengumpulkan pisang sejumlah yang telah  ditentukan dan keluar dari area bermain sebelum waktu habis. Jumlah  pisang yang diberikan lebih banyak dari syarat berakhirnya permainan  untuk mempermudah pilihan. Setelah berhasil mengumpulkan pisang, pemain harus mengarahkan karakter ke pintu keluar yang ditentukan. Saat pemain berhasil keluar atau jika waktu telah habis, permainan berakhir.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game 3d">membuat game 3d</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game 3d sederhana">membuat game 3d sederhana</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game">membuat game</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="tutorial membuat game 3d">tutorial membuat game 3d</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game dengan unity">membuat game dengan unity</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="buat game dengan unity">buat game dengan unity</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="buat game unity">buat game unity</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game sederhana">membuat game sederhana</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game mudah">membuat game mudah</a></li><li><a href="http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity" title="membuat game dengan 3d unity">membuat game dengan 3d unity</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/uCexKZBC1mA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://kangtanto.com/technology/membuat-game-3d-sederhana-dengan-unity</feedburner:origLink></item>
		<item>
		<title>Create HTML 5 And CSS3 Form</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/dIjL15DggT4/create-html-5-and-css3-form</link>
		<comments>http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form#comments</comments>
		<pubDate>Tue, 20 Dec 2011 08:32:50 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html5 tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=427</guid>
		<description><![CDATA[Kali ini kita akan membuat sebuah form dengan menggunakan beberapa elemen baru pada HTML 5 salah satunya adalah input type berupa email. Input type berupa email akan menolak saat kita memasukkan format email yang tidak tepat pada kotak tersebut. Format yang diminta selalu mengharuskan adanya tanda &#8220;@&#8221;. Misalnya alamat email harus ditulis dengan lengkap seperti [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Kali ini kita akan membuat sebuah form dengan menggunakan beberapa elemen baru pada HTML 5 salah satunya adalah input type berupa email. Input type berupa email akan menolak saat kita memasukkan format email yang tidak tepat pada kotak tersebut. Format yang diminta selalu mengharuskan adanya tanda &#8220;@&#8221;. Misalnya alamat email harus ditulis dengan lengkap seperti : tanto@kangtanto.com. Form yang akan kita buat nantinya akan tampak seperti gambar berikut ini.</p>
<p><img class="aligncenter" title="hasil form html 5 dan css3" src="http://img407.imageshack.us/img407/1605/hasilform.png" alt="hasilform Create HTML 5 And CSS3 Form" width="473" height="375" /></p>
<p>Penulisan input type email seperti berikut ini:<br />
<pre class="brush: xml">&lt;input type=&quot;email&quot; name=&quot;email_anda&quot; id=&quot;email_anda&quot; /&gt;</pre></p>
<p>Selain input type berupa email, kita akan menambahkan jenis input lainnya yaitu url. Seperti pada contoh kode HTML di bawah ini:<br />
<pre class="brush: xml">&lt;input type=&quot;url&quot; id=&quot;user_url&quot; name=&quot;user_url&quot; /&gt;</pre></p>
<p>Input jenis url akan meminta user memasukkan alamat domain atau sub domain. Jenis input terakhir yang juta pakai adalah bertipe required. Contoh penulisannya seperti di bawah ini<br />
<pre class="brush: xml">&lt;input type=&quot;required&quot; id=&quot;nama_anda&quot; name=&quot;nama_anda&quot; /&gt;</pre></p>
<p>Input jenis ini akan mewajibkan user untuk mengisi kotak tersebut. Apabila kotak input masih kosong, maka form pada saat disubmit akan mengeluarkan peringatan. Untuk membuat form HTML 5 ini, silahkan anda ketikkan script di bawah ini pada editor HTML anda.<br />
<pre class="brush: xml">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot; media=&quot;all&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;pembungkus&quot;&gt;
&lt;span id=&quot;sembunyikan&quot;&gt;Sembunyikan Form&lt;/span&gt;
&lt;span id=&quot;tampilkan&quot; style=&quot;display:none;&quot;&gt;Tampilkan Form&lt;/span&gt;
&lt;span id=&quot;miringkan&quot;&gt;Miringkan Form&lt;/span&gt;
&lt;span id=&quot;zoom&quot;&gt;Zoom Form&lt;/span&gt;
&lt;div id=&quot;formbiodata&quot;&gt;
	&lt;h1&gt;Data &lt;span&gt;Biodata&lt;/span&gt; Pengguna&lt;/h1&gt;
	&lt;form action=&quot;#&quot; method=&quot;post&quot;&gt;
	&lt;input type=&quot;text&quot; name=&quot;nama&quot; id=&quot;nama&quot; value=&quot;Nama Anda&quot; /&gt;
    &lt;label for=&quot;nama&quot;&gt;Nama Anda &lt;/label&gt;
	&lt;input type=&quot;email&quot; name=&quot;user_email&quot; id=&quot;email&quot; /&gt;
	&lt;label for=&quot;email&quot;&gt;E-mail: &lt;/label&gt;
	
   &lt;input type=&quot;url&quot; name=&quot;user_url&quot; id=&quot;url&quot; /&gt;
   &lt;label for=&quot;url&quot;&gt;Web &lt;/label&gt;
   
   &lt;input list=&quot;browsers&quot; /&gt;

   &lt;datalist id=&quot;browsers&quot;&gt;
  		&lt;option value=&quot;Internet Explorer&quot;&gt;
  		&lt;option value=&quot;Firefox&quot;&gt;
  		&lt;option value=&quot;Google Chrome&quot;&gt;
  		&lt;option value=&quot;Opera&quot;&gt;
  		&lt;option value=&quot;Safari&quot;&gt;
  &lt;/datalist&gt; 
  &lt;label for=&quot;browsers&quot;&gt;Browser yang anda gunakan &lt;/label&gt;
  
  &lt;input type=&quot;text&quot; name=&quot;username&quot; required=&quot;required&quot; id=&quot;username&quot; /&gt; 
  &lt;label for=&quot;username&quot;&gt;Username * &lt;/label&gt;
	&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;
&lt;input type=&quot;submit&quot; class=&quot;button&quot; value=&quot;Kirim&quot; /&gt;
	
&lt;/form&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;

</pre></p>
<p>Selanjutnya agar form anda tampil menarik, silahkan anda ketikkan CSS dibawah ini. CSS yang kita pakai kali ini sebagian merupakan CSS3. Misalnya untuk membuat rounded corner. Akan tetapi beberapa browser versi lama belum mendukung style ini.<br />
<pre class="brush: css">body {
    background-color: #f9f9f9;
    color: #222;
    font-family: Cantarell, Verdana, sans-serif;
    font-size: 12px;
}


input[type=&quot;submit&quot;]::-moz-focus-inner, input[type=&quot;button&quot;]::-moz-focus-inner { border : none; } 
input[type=&quot;submit&quot;]:focus, input[type=&quot;button&quot;]:focus { outline : none; }

.clear { clear: both; }

#formbiodata {
    width: 654px;
    height: 450px;
    margin: 20px auto;
    padding: 50px 0;
    border-radius:10px;
    -moz-border-radius:10px;/*untuk firefox versi 3.5 ke bawah*/
    box-shadow:10px 10px 5px #888888;
    border:1px solid #FFF;
    overflow: hidden;
    position: relative;
    
}

#formbiodata input, #formbiodata select {
        background: url('images/input.png') no-repeat;
        color: #888;
        border: 1px solid #ccc;
        font-family: Cantarell, Verdana, sans-serif;
        font-weight: bold;
        font-size: 15px;
        width: 300px;
        height: 35px;
        padding: 0 25px;
        margin: 20px 0;
        float: left;
        
        border-radius: 6px;
        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
}

 #formbiodata input.button {
    background: none repeat scroll 0 0 #A3D62F;
    border: 1px solid #3B6E22;
    border-radius: 8px 8px 8px 8px;
    color: #FFFFFF;
    cursor: pointer;
    width: 85px;
    height: 38px;
    position: relative;
    bottom: 15px;
    left: 575px;
    width: 70px;
}

#formbiodata label {
        color: #666;
        font-size: 12px;
        font-weight: bold;
        line-height: 14px;
        float: right;
        margin: 23px -25px;
        width: 270px;
}

#formbiodata h1, #formbiodata h2 {
        font-size: Verdana, sans-serif;
        text-align: center;
        font-size: 24px;
        text-shadow: 1px 1px 2px #222;
    }
#formbiodata h1 span { color: #a90329; }

</pre></p>
<p>Sementara itu dulu terkait pembuatan form sederhana ini. Tahap selanjutnya kita bisa menambahkan Jquery atau yang lainnya. Ada usul?</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="html5 tutorial">html5 tutorial</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="html 5 tutorial">html 5 tutorial</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="css3 form">css3 form</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="sembunyikan html h1">sembunyikan html h1</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="membuat form html menarik">membuat form html menarik</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="tutorial html5 lengkap">tutorial html5 lengkap</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="membuat form html 5">membuat form html 5</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="membuat desain form text input website menggunakan photoshop">membuat desain form text input website menggunakan photoshop</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="membuat css3 form input">membuat css3 form input</a></li><li><a href="http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form" title="membuat button dengan html 5">membuat button dengan html 5</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/dIjL15DggT4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://kangtanto.com/web-2/html5-web-2/create-html-5-and-css3-form</feedburner:origLink></item>
		<item>
		<title>Let It Snow On Google</title>
		<link>http://feedproxy.google.com/~r/kangtanto/~3/_FpkuMoimuE/let-it-snow-on-google</link>
		<comments>http://kangtanto.com/technology/let-it-snow-on-google#comments</comments>
		<pubDate>Sun, 18 Dec 2011 09:27:59 +0000</pubDate>
		<dc:creator>kangtanto</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://kangtanto.com/?p=424</guid>
		<description><![CDATA[Today there is a surprise from Google. Just type &#8220;let it snow&#8221; on your google search and the snow will fall on your browser. It is not a doodle actually, just a winter surprise from Google. Then you can play with your mouse to draw as it is on the window in front of you. [...]]]></description>
			<content:encoded><![CDATA[<div align="right" style="float: none; padding: 5px 5px 5px 5px;"><a name="fb_share" type="button_count" share_url="http://kangtanto.com/technology/let-it-snow-on-google"></a></div>            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
            <script type="text/javascript" src="http://kangtanto.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCss.js"></script>
<p>Today there is a surprise from Google. Just type &#8220;let it snow&#8221; on your google search and the snow will fall on your browser. It is not a doodle actually, just a winter surprise from Google. Then you can play with your mouse to draw as it is on the window in front of you.</p>
<p><img class="aligncenter" title="snow on your browser" src="http://img254.imageshack.us/img254/479/saljugoogle.png" alt="saljugoogle Let It Snow On Google" width="512" height="303" /></p>
<p>Don&#8217;t forget to take a snapshot and clik &#8220;Defrost&#8221; if you want to clean the snow.</p>
<p>Curios of the technology behind all of this?</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://kangtanto.com/technology/let-it-snow-on-google" title="let it snow">let it snow</a></li></ul><img src="http://feeds.feedburner.com/~r/kangtanto/~4/_FpkuMoimuE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://kangtanto.com/technology/let-it-snow-on-google/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://kangtanto.com/technology/let-it-snow-on-google</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 2.933 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-13 13:10:20 -->

