<?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>HTML5 Tutorial 4 U</title>
	<atom:link href="http://www.html5tutorial4u.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.html5tutorial4u.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 May 2013 12:59:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to Submit A Form Using JavaScript</title>
		<link>http://www.html5tutorial4u.com/blog/how-to-submit-form-using-javascript.htm</link>
		<comments>http://www.html5tutorial4u.com/blog/how-to-submit-form-using-javascript.htm#comments</comments>
		<pubDate>Sun, 05 May 2013 12:38:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[how to submit a form using javascript]]></category>
		<category><![CDATA[submit a form using javascript]]></category>
		<category><![CDATA[submit form using javascript]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=1338</guid>
		<description><![CDATA[You often face situation where you have to submit a HTML form without using SUBMIT type button. In this type of situation, JavaScript will help you to accomplish the task. In this article we have discussed about how to submit &#8230; <a href="http://www.html5tutorial4u.com/blog/how-to-submit-form-using-javascript.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You often face situation where you have to submit a HTML form without using SUBMIT type button. In this type of situation, JavaScript will help you to accomplish the task.</p>
<p>In this article we have discussed about how to submit a HTML form using JavaScript. Below we have provided the simple code for submitting a form using JavaScript. Anybody has the basic knowledge of HTML and JavaScript should easily understand this code.</p>
<pre class="brush: php; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Example of How To Submit A Form Using JavaScript&lt;/title&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function submit_form()
{
    document.my_form.submit();
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form name=&quot;my_form&quot; method=&quot;post&quot; action=&quot;my_page.php&quot;&gt;
First Name: &lt;input type=&quot;text&quot; name=&quot;first_name&quot; size=&quot;30&quot;&gt;&lt;br&gt;&lt;br&gt;
Last Name: &lt;input type=&quot;text&quot; name=&quot;last_name&quot; size=&quot;30&quot;&gt;
&lt;/form&gt;
&lt;a href=&quot;javascript:;&quot; onclick=&quot;submit_form()&quot;&gt;Click Here to Submit Form&lt;/a&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<div class="see-output-div">&nbsp;</div>
<div class="link_div">
<div class="link_div_prev"><a href="/blog/abstract-class-and-interface.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/blog/how-to-submit-form-using-javascript.htm"><strong>How to Submit A Form Using JavaScript</strong></a></h2>
</div>
<div class="link_div_next"><a href="/blog/how-to-submit-form-using-javascript.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/blog/how-to-submit-form-using-javascript.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abstract Class and Interface</title>
		<link>http://www.html5tutorial4u.com/blog/abstract-class-and-interface.htm</link>
		<comments>http://www.html5tutorial4u.com/blog/abstract-class-and-interface.htm#comments</comments>
		<pubDate>Sun, 21 Apr 2013 08:13:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[abstract class and interface]]></category>
		<category><![CDATA[abstract class and interface difference]]></category>
		<category><![CDATA[interface and abstract class]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=1253</guid>
		<description><![CDATA[Abstract class and interface are very well known words for programmers. These two are very important for object oriented programming. Though interface and abstract class have few similarities, but there are some differences as well. In this article we have &#8230; <a href="http://www.html5tutorial4u.com/blog/abstract-class-and-interface.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Abstract class and interface are very well known words for programmers. These two are very important for object oriented programming. Though interface and abstract class have few similarities, but there are some differences as well. In this article we have discussed about important differences between abstract class and interface.</p>
<h2 class="default-h2">Abstract Class and Interface Difference</h2>
<div class="blog-table-div">
<div class="blog-left-table-header"><strong>Abstract Class</strong></div>
<div class="blog-right-table-header"><strong>Interface</strong></div>
<div class="blog-row">In abstract class, at least one method must be declared as abstract. Abstract method has only declaration within abstract class and it does not have any implementation.</div>
<div class="blog-row-fixed-height">In interface, all the methods are abstract by default. No variable or concrete method is allowed in interface.</div>
<div class="blog-row">Abstract method must be declared with public, protected and internal access modifiers. In the time of implementation within sub classes, the same or less restricted access modifier must be used.</div>
<div class="blog-row-fixed-height">All methods must have public access modifiers in an interface.</div>
<div class="blog-row">Multiple inheritance is not possible for abstract class, that means a class can inherit only one abstract class.</div>
<div class="blog-row">Multiple inheritance is possible for interface, that means a class can inherit more than one interface at a time.</div>
<div class="blog-row">Abstract class can contain variables and concrete methods.</div>
<div class="blog-row">Variables and concrete methods are not allowed in interface.</div>
</div>
<div class="see-output-div">&nbsp;</div>
<div class="link_div">
<div class="link_div_prev"><a href="/blog/convert-image-to-base64.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/blog/abstract-class-and-interface.htm"><strong>Abstract Class and Interface</strong></a></h2>
</div>
<div class="link_div_next"><a href="/blog/how-to-submit-form-using-javascript.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/blog/abstract-class-and-interface.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Image to Base64</title>
		<link>http://www.html5tutorial4u.com/blog/convert-image-to-base64.htm</link>
		<comments>http://www.html5tutorial4u.com/blog/convert-image-to-base64.htm#comments</comments>
		<pubDate>Wed, 17 Apr 2013 17:40:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[base64 encode image]]></category>
		<category><![CDATA[convert image to base64]]></category>
		<category><![CDATA[image to base64 string]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=1213</guid>
		<description><![CDATA[Base64 is an encoding method which is used to represent binary data in ASCII format. Conversion of images into base64 string is very useful for such pages where a large number of images are displayed. For example, suppose you are &#8230; <a href="http://www.html5tutorial4u.com/blog/convert-image-to-base64.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Base64 is an encoding method which is used to represent binary data in ASCII format. Conversion of images into base64 string is very useful for such pages where a large number of images are displayed. For example, suppose you are developing a web page which is showing fifty images at a time. For showing those images, fifty HTTP requests need to be sent to the web server and also fifty responses need to be received. Because all the images are physically stored in the web server. It increases the page load time and also affects the SEO performance of that page. Convert image to base64 string is the best solution of the above mentioned situation. The following example shows how to convert an image to base64 string in PHP.</p>
<p>Image to base64 string example:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;?php

   $image_src = &quot;sunrise.jpg&quot;; // image path in the server
   $imagebinary = fread(fopen($image_src, &quot;r&quot;), filesize($image_src));
   $image_str = base64_encode($imagebinary);
   echo '&lt;img src=&quot;data:image/jpg;base64,'.$image_str.'&quot; /&gt;';

?&gt;
</pre>
<div class="see-output-div">&nbsp;</div>
<div class="link_div">
<div class="link_div_prev"><a href="/blog/301-redirect.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/blog/convert-image-to-base64.htm"><strong>Convert Image to Base64</strong></a></h2>
</div>
<div class="link_div_next"><a href="/blog/abstract-class-and-interface.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/blog/convert-image-to-base64.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 New Input Types</title>
		<link>http://www.html5tutorial4u.com/html5-input-types.htm</link>
		<comments>http://www.html5tutorial4u.com/html5-input-types.htm#comments</comments>
		<pubDate>Sat, 02 Mar 2013 06:22:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Left Menu]]></category>
		<category><![CDATA[html5 input type]]></category>
		<category><![CDATA[html5 input types]]></category>
		<category><![CDATA[input type html5]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=1051</guid>
		<description><![CDATA[Input elements are very important for designing form. HTML5 has introduced several new input types. These new types offer input controls and validation in simpler manner. In this article we have discussed about the following new HTML5 input types: date &#8230; <a href="http://www.html5tutorial4u.com/html5-input-types.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Input elements are very important for designing form. HTML5 has introduced several new input types. These new types offer input controls and validation in simpler manner.</p>
<p>In this article we have discussed about the following new HTML5 input types:</p>
<ul class="content-ul">
<li>date</li>
<li>datetime</li>
<li>datetime-local</li>
<li>time</li>
<li>month</li>
<li>week</li>
<li>color</li>
<li>email</li>
<li>url</li>
<li>tel</li>
<li>number</li>
<li>range</li>
<li>search</li>
</ul>
<p>Important point need to be remembered:</p>
<p class="post-indent">All these HTML5 input types are not supported by all web browsers. But hopefully all browsers will support these new input types in near future. Now if you use these input types in your HTML5 document and they are not supported by the web browser, then these are shown as regular text fields.</p>
<div class="input-type-div">
<h2>Input Type &#8211; date</h2>
<p>HTML5 date type input element allows user to select a date. Presently date type is supported by Google Chrome, Opera and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Birthday: &lt;input type=&quot;date&quot; name=&quot;dob&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-date', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; datetime</h2>
<p>HTML5 datetime type input element allows user to select a date with time (hour and minute). It always shows &#8216;UTC&#8217; timezone which can&#8217;t be modified. Presently datetime type is supported by Opera and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Journey Start Date: &lt;input type=&quot;datetime&quot; name=&quot;journey_start_date&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-datetime', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; datetime-local</h2>
<p>HTML5 datetime-local type input element allows user to select a date with time (hour and minute) for local timezone. It does not show any timezone. Presently datetime-local type is supported by Opera and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Birthday with Time: &lt;input type=&quot;datetime-local&quot; name=&quot;dob&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-datetime-local', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; time</h2>
<p>HTML5 time type input element allows user to select a time (hour and minute). Presently time type is supported by Google Chrome, Opera and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Event Start Time: &lt;input type=&quot;time&quot; name=&quot;event_start_time&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-time', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; month</h2>
<p>HTML5 month type input element allows user to select a month with year. Presently month type is supported by Google Chrome, Opera and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Birthday (month and year): &lt;input type=&quot;month&quot; name=&quot;dob&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-month', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; week</h2>
<p>HTML5 week type input element allows user to select a week with year. Presently week type is supported by Google Chrome, Opera and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Event Week: &lt;input type=&quot;week&quot; name=&quot;event_week&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-week', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; color</h2>
<p>HTML5 color type input element allows user to select a color from predefined color palate. Presently color type is supported by Google Chrome and Opera web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Select Color: &lt;input type=&quot;color&quot; name=&quot;pick_color&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-color', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; email</h2>
<p>HTML5 email type input element is used to create input field which specifically takes an email address as value. It also provides default client-side email address validation. Presently email type is supported by latest versions of all web browsers except Safari.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Email Address: &lt;input type=&quot;email&quot; name=&quot;user_email&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-email', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; url</h2>
<p>HTML5 url type input element is used to create input field which specifically takes a web address or URL as value. It also provides default client-side URL validation. Presently url type is supported by latest versions of all web browsers except Safari.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Website Address: &lt;input type=&quot;url&quot; name=&quot;website_address&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-url', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; tel</h2>
<p>HTML5 tel type input element is used to create input field which specifically takes a telephone number as value. Unfortunately at present time no web browser supports tel type input element.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Phone Number: &lt;input type=&quot;tel&quot; name=&quot;phone_number&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-tel', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; number</h2>
<p>
HTML5 number type input element is used to create input field which takes a numeric value. To enforce restrictions, the following attributes can be used:</p>
<ul>
<li>max &#8211; It specifies the maximum value that is allowed</li>
<li>min &#8211; It specifies the minimum value that is allowed</li>
<li>step &#8211; It specifies the legal number intervals</li>
</ul>
<p>Presently number type is supported by latest versions of all web browsers except Firefox.
</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Age (from 1 to 18): &lt;input type=&quot;number&quot; name=&quot;age&quot; min=&quot;1&quot; max=&quot;18&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-number', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; range</h2>
<p>
HTML5 range type input element is used to create input field which takes a numeric value from a specified range of numbers. To enforce restrictions, the following attributes can be used:</p>
<ul>
<li>max &#8211; It specifies the maximum value that is allowed</li>
<li>min &#8211; It specifies the minimum value that is allowed</li>
<li>step &#8211; It specifies the legal number intervals</li>
</ul>
<p>Presently range type is supported by latest versions of all web browsers except Firefox.
</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Marks (0 - 80): &lt;input type=&quot;range&quot; name=&quot;marks&quot; min=&quot;0&quot; max=&quot;80&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-range', 'xyz');" class="output-button-mid" /></div>
</div>
<div class="input-type-div">
<h2>Input Type &#8211; search</h2>
<p>HTML5 search type input element is used to create search field. It is quite similar to regular text type input element. Presently search type is supported by Google Chrome and Safari web browsers.</p>
<p>Example:</p>
<pre class="brush: php; title: ; notranslate">
Search: &lt;input type=&quot;search&quot; name=&quot;search_field&quot;&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=input-type-search', 'xyz');" /></div>
</div>
<div class="link_div">
<div class="link_div_prev"><a href="/wbr-element.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/html5-input-types.htm"><strong>HTML5 Input Types</strong></a></h2>
</div>
<div class="link_div_next"><a href="/html5-input-types.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/html5-input-types.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>&lt;wbr&gt;</title>
		<link>http://www.html5tutorial4u.com/wbr-element.htm</link>
		<comments>http://www.html5tutorial4u.com/wbr-element.htm#comments</comments>
		<pubDate>Sun, 17 Feb 2013 14:35:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Left Menu]]></category>
		<category><![CDATA[html5 wbr element]]></category>
		<category><![CDATA[wbr element]]></category>
		<category><![CDATA[wbr tag]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=1038</guid>
		<description><![CDATA[The wbr element (&#60;wbr&#62;) is used to specify a break point in a very long word or string. If a word or a string is too long in a document then sometimes the browser may breaks it at wrong place &#8230; <a href="http://www.html5tutorial4u.com/wbr-element.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a class="no_a" href="http://www.html5tutorial4u.com/wbr-element.htm"><strong class="normal-strong">wbr element</strong></a> (&lt;wbr&gt;) is used to specify a break point in a very long word or string. If a word or a string is too long in a document then sometimes the browser may breaks it at wrong place so it will be very difficult to read or it does not get broken at all which hampers the page layout. To overcome these problems the <a class="no_a" href="http://www.html5tutorial4u.com/wbr-element.htm"><strong class="normal-strong">HTML5 wbr element</strong></a> is ideal.</p>
<p>Important point need to be remembered:</p>
<p class="post-indent"><a class="no_a" href="http://www.html5tutorial4u.com/wbr-element.htm"><strong class="normal-strong">HTML5 wbr tag</strong></a> is supported by latest versions of all web browsers except Internet Explorer.</p>
<p>There is a <strong class="normal-strong">HTML5 wbr element</strong> example given below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;p&gt;For functioning of AJAX, one of the very important object is XML&lt;wbr&gt;Http&lt;wbr&gt;Request.&lt;/p&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=wbr', 'xyz');" /></div>
<div class="link_div">
<div class="link_div_prev"><a href="/mark-element.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/wbr-element.htm"><strong>wbr element</strong></a></h2>
</div>
<div class="link_div_next"><a href="/html5-input-types.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/wbr-element.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&lt;hgroup&gt;</title>
		<link>http://www.html5tutorial4u.com/hgroup-element.htm</link>
		<comments>http://www.html5tutorial4u.com/hgroup-element.htm#comments</comments>
		<pubDate>Thu, 07 Feb 2013 06:37:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Left Menu]]></category>
		<category><![CDATA[hgroup element]]></category>
		<category><![CDATA[hgroup tag]]></category>
		<category><![CDATA[html5 hgroup element]]></category>

		<guid isPermaLink="false">http://localhost/html5tutorial4u/?p=754</guid>
		<description><![CDATA[The hgroup element (&#60;hgroup&#62;) is used to group heading with associated sub-headings. More specifically it can say that HTML5 hgroup tag is used for grouping &#60;h1&#62; &#8211; &#60;h6&#62; tags. It works just like a container of two or more related &#8230; <a href="http://www.html5tutorial4u.com/hgroup-element.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a class="no_a" href="http://www.html5tutorial4u.com/hgroup-element.htm"><strong class="normal-strong">hgroup element</strong></a> (&lt;hgroup&gt;) is used to group heading with associated sub-headings. More specifically it can say that <a class="no_a" href="http://www.html5tutorial4u.com/hgroup-element.htm"><strong class="normal-strong">HTML5 hgroup tag</strong></a> is used for grouping &lt;h1&gt; &#8211; &lt;h6&gt; tags. It works just like a container of two or more related heading elements.</p>
<p>Important point need to be remembered:</p>
<p class="post-indent"><a class="no_a" href="http://www.html5tutorial4u.com/hgroup-element.htm"><strong class="normal-strong">HTML5 hgroup element</strong></a> is supported by latest versions of all web browsers. Internet Explorer 8 or earlier versions of Internet Explorer do not support <a class="no_a" href="http://www.html5tutorial4u.com/hgroup-element.htm"><strong class="normal-strong">hgroup tag</strong></a>.</p>
<p>There is a <strong class="normal-strong">HTML5 hgroup element</strong> example given below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;article&gt;
   &lt;hgroup&gt;
      &lt;h1&gt;Title of article goes here&lt;/h1&gt;
      &lt;h2&gt;Sub-title of article goes here&lt;/h2&gt;
   &lt;/hgroup&gt;
   &lt;p&gt;Article content goes here...&lt;/p&gt;
&lt;/article&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=hgroup', 'xyz');" /></div>
<div class="link_div">
<div class="link_div_prev"><a href="/section-element.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/hgroup-element.htm"><strong>hgroup element</strong></a></h2>
</div>
<div class="link_div_next"><a href="/aside-element.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/hgroup-element.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&lt;mark&gt;</title>
		<link>http://www.html5tutorial4u.com/mark-element.htm</link>
		<comments>http://www.html5tutorial4u.com/mark-element.htm#comments</comments>
		<pubDate>Sat, 02 Feb 2013 06:40:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Left Menu]]></category>
		<category><![CDATA[html5 mark element]]></category>
		<category><![CDATA[mark element]]></category>
		<category><![CDATA[mark tag]]></category>

		<guid isPermaLink="false">http://localhost/html5tutorial4u/?p=776</guid>
		<description><![CDATA[The mark element (&#60;mark&#62;) is used to highlight some parts of text of a document to indicate its importance to the users. It also draws extra attention of users to the highlighted text. Important point need to be remembered: HTML5 &#8230; <a href="http://www.html5tutorial4u.com/mark-element.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a class="no_a" href="http://www.html5tutorial4u.com/mark-element.htm"><strong class="normal-strong">mark element</strong></a> (&lt;mark&gt;) is used to highlight some parts of text of a document to indicate its importance to the users. It also draws extra attention of users to the highlighted text.</p>
<p>Important point need to be remembered:</p>
<p class="post-indent"><a class="no_a" href="http://www.html5tutorial4u.com/mark-element.htm"><strong class="normal-strong">HTML5 mark element</strong></a> is supported by latest versions of all web browsers. Internet Explorer 8 or earlier versions of Internet Explorer do not support <a class="no_a" href="http://www.html5tutorial4u.com/mark-element.htm"><strong class="normal-strong">mark tag</strong></a>.</p>
<p>There is a <strong class="normal-strong">HTML5 mark element</strong> example given below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;h1&gt;About &lt;mark&gt;HTML5&lt;/mark&gt;&lt;/h1&gt;
&lt;p&gt;&lt;mark&gt;HTML5&lt;/mark&gt; is the fifth version of HyperText Markup Language. Many elements like header, footer, audio, video etc. have been introduced in &lt;mark&gt;HTML5&lt;/mark&gt;.&lt;/p&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=mark', 'xyz');" /></div>
<div class="link_div">
<div class="link_div_prev"><a href="/time-element.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/mark-element.htm"><strong>mark element</strong></a></h2>
</div>
<div class="link_div_next"><a href="/wbr-element.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/mark-element.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>301 Redirect</title>
		<link>http://www.html5tutorial4u.com/blog/301-redirect.htm</link>
		<comments>http://www.html5tutorial4u.com/blog/301-redirect.htm#comments</comments>
		<pubDate>Wed, 30 Jan 2013 07:42:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[301 redirection]]></category>
		<category><![CDATA[htaccess 301 redirect]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=929</guid>
		<description><![CDATA[301 redirect is a very useful way for web page redirection. It is also very important for search engine optimization (SEO) and today everybody knows that without proper search engine optimization, no website can get good rank in search results. &#8230; <a href="http://www.html5tutorial4u.com/blog/301-redirect.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="default-p-height"><a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm"><strong class="normal-strong">301 redirect</strong></a> is a very useful way for web page redirection. It is also very important for search engine optimization (SEO) and today everybody knows that without proper search engine optimization, no website can get good rank in search results. As the <a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm"><strong class="normal-strong">301 redirection</strong></a> is not browser dependent, so it is faster than ‘meta refresh’ method.</p>
<p class="default-p-height blog-last-p">301 redirect can be done in several ways. We have tried to discuss all the methods in this article. But <a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm"><strong class="normal-strong">htaccess 301 redirect</strong></a> is the most popular method among them. After reading this article, anyone can easily understand how to create 301 redirection in different ways.</p>
<h2 class="default-h2"><a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm">301 redirect non-www to www URLs using .htaccess</a></h2>
<p class="default-p-height">First create an .htaccess file with the following code and place it in the root directory (generally the root directory is &#8216;public_html&#8217;). This .htaccess file will redirect all incoming requests from ‘domain.com’ to ‘www.domain.com’. This 301 redirection is very important for SEO. Please don&#8217;t forget to replace &#8216;domain.com&#8217; and &#8216;www.domain.com&#8217; in the code with the corresponding actual domain name value.</p>
<pre class="brush: php; title: ; notranslate">
Options+FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
</pre>
<div class="blog-extra-bottom-margin blog-last-p">Note: <strong class="normal-strong">htaccess 301 redirect</strong> method only works on Linux web server having mod-rewrite module enabled.</div>
<h2 class="default-h2"><a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm">Redirect old domain to new domain using .htaccess</a></h2>
<p class="default-p-height">Create an .htaccess file with the following code and place it in the root directory of the old domain. This .htaccess file will redirect all the web pages from old domain name to new domain name (new website). Please don&#8217;t forget to replace &#8216;www.new-domain.com&#8217; in the code with the actual new domain name value.</p>
<pre class="brush: php; title: ; notranslate">
Options+FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^old-domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.old-domain.com$
RewriteRule (.*)$ http://www.new-domain.com/$1 [R=301,L]
</pre>
<div class="blog-extra-bottom-margin blog-last-p">Note: <strong class="normal-strong">htaccess 301 redirect</strong> method only works on Linux platform having mod-rewrite module enabled.</div>
<h2 class="default-h2"><a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm">Redirect entire website using .htaccess</a></h2>
<pre class="brush: php; title: ; notranslate">
Options+FollowSymlinks
RewriteEngine On
Redirect 301 / http://www.new-site.com/
</pre>
<div class="blog-extra-bottom-margin blog-last-p">Note: <strong class="normal-strong">htaccess 301 redirect</strong> method only works on Linux web server having mod-rewrite module enabled.</div>
<h2 class="default-h2"><a class="no_a" href="http://www.html5tutorial4u.com/blog/301-redirect.htm">Redirect specific web page using .htaccess</a></h2>
<pre class="brush: php; title: ; notranslate">
Options+FollowSymlinks
RewriteEngine On
Redirect 301 /old-page.html http://www.yoursite.com/new-page.html
</pre>
<div class="home-link-div-upper">Note: <strong class="normal-strong">htaccess 301 redirect</strong> method only works on Linux platform having mod-rewrite module enabled.</div>
<div class="link_div">
<div class="link_div_prev"><a href="/blog/8-new-free-fonts-for-your-designs.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/blog/301-redirect.htm"><strong>301 Redirect</strong></a></h2>
</div>
<div class="link_div_next"><a href="/blog/convert-image-to-base64.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/blog/301-redirect.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 New Free Fonts for Your Designs</title>
		<link>http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm</link>
		<comments>http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm#comments</comments>
		<pubDate>Fri, 11 Jan 2013 17:50:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[download free fonts]]></category>
		<category><![CDATA[free font]]></category>
		<category><![CDATA[free fonts]]></category>

		<guid isPermaLink="false">http://www.html5tutorial4u.com/?p=784</guid>
		<description><![CDATA[Fonts are very essential element for designs and every designer knows the importance of fonts for making a good design. So designers always try to increase their font library and especially with new free fonts. Here we have made a &#8230; <a href="http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="blog-extra-bottom-margin-20px">Fonts are very essential element for designs and every designer knows the importance of fonts for making a good design. So designers always try to increase their font library and especially with <a class="no_a" href="http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm"><strong class="normal-strong">new free fonts</strong></a>. Here we have made a collection of few very good <a class="no_a" href="http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm"><strong class="normal-strong">free fonts</strong></a> with different style for designers. We hope that these fonts will help you a lot. Best of luck!</p>
<h2><a href="http://www.behance.net/gallery/Villa-Didot-%28Free-Font%29/2727177" target="_blank">Villa Didot</a></h2>
<div class="blog-image-div">
<a href="http://www.behance.net/gallery/Villa-Didot-%28Free-Font%29/2727177" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-1.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://www.behance.net/gallery/Manteka/2846011" target="_blank">Manteka</a></h2>
<div class="blog-image-div">
<a href="http://www.behance.net/gallery/Manteka/2846011" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-2.jpg" alt="Free Fonts" /></a><br />
<br />
<a href="http://www.behance.net/gallery/Manteka/2846011" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-3.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://www.behance.net/gallery/Barkentina-Typeface-and-Free-Font/6151175" target="_blank">Barkentina</a></h2>
<div class="blog-image-div">
<a href="http://www.behance.net/gallery/Barkentina-Typeface-and-Free-Font/6151175" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-4.jpg" alt="Free Fonts" /></a><br />
<br />
<a href="http://www.behance.net/gallery/Barkentina-Typeface-and-Free-Font/6151175" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-5.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://fontfabric.com/metropolis-free-font/" target="_blank">Metropolis</a></h2>
<div class="blog-image-div">
<a href="http://fontfabric.com/metropolis-free-font/" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-6.jpg" alt="Free Fonts" /></a><br />
<br />
<a href="http://fontfabric.com/metropolis-free-font/" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-7.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://www.behance.net/gallery/Multicolore-FREE-Font/5172881" target="_blank">Multicolore</a></h2>
<div class="blog-image-div">
<a href="http://www.behance.net/gallery/Multicolore-FREE-Font/5172881" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-8.jpg" alt="Free Fonts" /></a><br />
<br />
<a href="http://www.behance.net/gallery/Multicolore-FREE-Font/5172881" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-9.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://www.losttype.com/font/?name=maven" target="_blank">Maven Pro</a></h2>
<div class="blog-image-div">
<a href="http://www.losttype.com/font/?name=maven" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-10.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://www.dafont.com/jalane-light.font" target="_blank">Jalane Light</a></h2>
<div class="blog-image-div">
<a href="http://www.losttype.com/font/?name=maven" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-11.jpg" alt="Free Fonts" /></a>
</div>
<h2><a href="http://www.fontsquirrel.com/fonts/Existence-Light" target="_blank">Existence Light</a></h2>
<div class="blog-image-div blog-extra-bottom-margin-24px">
<a href="http://www.fontsquirrel.com/fonts/Existence-Light" target="_blank"><img src="http://www.html5tutorial4u.com/wp-content/uploads/2013/01/post-784-12.jpg" alt="Free Fonts" /></a>
</div>
<div class="link_div">
<div class="link_div_prev"></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm"><strong>8 New Free Fonts for Your Design</strong></a></h2>
</div>
<div class="link_div_next"><a href="/blog/301-redirect.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/blog/8-new-free-fonts-for-your-designs.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&lt;time&gt;</title>
		<link>http://www.html5tutorial4u.com/time-element.htm</link>
		<comments>http://www.html5tutorial4u.com/time-element.htm#comments</comments>
		<pubDate>Fri, 11 Jan 2013 09:25:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Left Menu]]></category>
		<category><![CDATA[html5 time tag]]></category>
		<category><![CDATA[time element]]></category>
		<category><![CDATA[time tag]]></category>

		<guid isPermaLink="false">http://localhost/html5tutorial4u/?p=774</guid>
		<description><![CDATA[The time tag (&#60;time&#62;) defines extra semantic information like time (24 hour format) or date (with or without time zone offset) in a web page. The time element of HTML5 does not render anything, so it won&#8217;t make any difference &#8230; <a href="http://www.html5tutorial4u.com/time-element.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a class="no_a" href="http://www.html5tutorial4u.com/time-element.htm"><strong class="normal-strong">time tag</strong></a> (&lt;time&gt;) defines extra semantic information like time (24 hour format) or date (with or without time zone offset) in a web page. <strong class="normal-strong">The time element</strong> of HTML5 does not render anything, so it won&#8217;t make any difference in the output. But it encodes the date and time in a way that can be read by web browsers and generates smarter search results produced by search engines.</p>
<p>Important point need to be remembered:</p>
<p class="post-indent"><a class="no_a" href="http://www.html5tutorial4u.com/time-element.htm"><strong class="normal-strong">HTML5 time element</strong></a> is supported by latest versions of all web browsers. Internet Explorer 8 or earlier versions of Internet Explorer do not support <a class="no_a" href="http://www.html5tutorial4u.com/time-element.htm"><strong class="normal-strong">time element</strong></a>.</p>
<p>There is a <strong class="normal-strong">HTML5 time element</strong> example given below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;p&gt;Our shop is opened at &lt;time&gt;10:00&lt;/time&gt; every morning.&lt;/p&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=time-1', 'xyz');" class="output-button-mid" /></div>
<p>When &lt;time&gt; tag is used without any attributes then the content enclosed between &lt;time&gt; and &lt;/time&gt; must be a valid date or time.</p>
<p><strong class="normal-strong">The HTML5 time element</strong> has an attribute &#8216;datetime&#8217;. In the following examples I would like to show that how to use &#8216;datetime&#8217; attribute in the <strong class="normal-strong">time element</strong>.</p>
<pre class="brush: php; title: ; notranslate">
&lt;time datetime=&quot;2012-11-25&quot;&gt;25&lt;sup&gt;th&lt;/sup&gt; November&lt;/time&gt;
</pre>
<pre class="brush: php; title: ; notranslate">
&lt;time datetime=&quot;18:00&quot;&gt;starts at 6pm&lt;/time&gt;
</pre>
<pre class="brush: php; title: ; notranslate">
&lt;time datetime=&quot;2012-11-25T18:00+00:00&quot;&gt;6pm on the festival day&lt;/time&gt;
</pre>
<div class="see-output-div">
<input type="button" name="see_output" value="See Output" onClick="javascript: popup('http://www.html5tutorial4u.com/easy-editor.php?pn=time-2', 'xyz');" class="output-button-mid" /></div>
<p>When the datetime attribute is used with the <strong class="normal-strong">HTML5 time element</strong> that time the content can be anything.</p>
<div class="syntax-after-div-above-link-div">&nbsp;</div>
<div class="link_div">
<div class="link_div_prev"><a href="/audio-element.htm">Previous</a></div>
<div class="link_div_mid">
<h2><a href="http://www.html5tutorial4u.com/time-element.htm"><strong>time element</strong></a></h2>
</div>
<div class="link_div_next"><a href="/mark-element.htm">Next</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.html5tutorial4u.com/time-element.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
