<?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>Mukesh Chapagain&#039;s Blog &#187; HTML</title>
	<atom:link href="http://blog.chapagain.com.np/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.chapagain.com.np</link>
	<description>PHP Magento jQuery SQL Wordpress Joomla Programming &#38; Tutorial</description>
	<lastBuildDate>Tue, 07 Feb 2012 00:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>W3C Validation: IFrame Error with XHTML 1.0 Strict Doctype</title>
		<link>http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/</link>
		<comments>http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 11:58:20 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[doctype]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=877</guid>
		<description><![CDATA[IFrames are not supported with XHTML 1.0 Strict Doctype. When you use IFrame and your doctype is XHTML 1.0 Strict, then you cannot pass the W3C Markup Validation test. You always get errors. The errors are like:- there is no attribute &#8220;src&#8221; there is no attribute &#8220;scrolling&#8221; there is no attribute &#8220;frameborder&#8221; there is no [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/magento-get-width-height-of-image-using-varien_image-class/' rel='bookmark' title='Permanent Link: Magento: Get width height of image using Varien_Image class'>Magento: Get width height of image using Varien_Image class</a></li>
<li><a href='http://blog.chapagain.com.np/octopus-pauls-prediction-spain-will-win-the-fifa-2010-worldcup/' rel='bookmark' title='Permanent Link: Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010'>Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010</a></li>
<li><a href='http://blog.chapagain.com.np/hardware-interrupt/' rel='bookmark' title='Permanent Link: Hardware Interrupt'>Hardware Interrupt</a></li>
<li><a href='http://blog.chapagain.com.np/magento-fatal-error-call-to-a-member-function-gettable-on-a-non-object/' rel='bookmark' title='Permanent Link: Magento: Fatal error: Call to a member function getTable() on a non-object'>Magento: Fatal error: Call to a member function getTable() on a non-object</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>IFrames</strong> are not supported with <strong>XHTML 1.0 Strict Doctype</strong>.</p>
<p>When you use IFrame and your doctype is XHTML 1.0 Strict, then you cannot pass the <strong>W3C Markup Validation</strong> test. You always get errors.</p>
<p>The errors are like:-<span id="more-877"></span></p>
<blockquote><p>there is no attribute &#8220;src&#8221;<br />
there is no attribute &#8220;scrolling&#8221;<br />
there is no attribute &#8220;frameborder&#8221;<br />
there is no attribute &#8220;height&#8221;<br />
there is no attribute &#8220;width&#8221;<br />
there is no attribute &#8220;allowtransparency&#8221;<br />
there is no attribute &#8220;title&#8221;<br />
element &#8220;iframe&#8221; undefined</p></blockquote>
<p><span style="text-decoration: underline;"><strong>Solution</strong></span></p>
<p>Use <strong>object</strong> tag instead of <strong>iframe</strong>.</p>
<p><span style="text-decoration: underline;"><strong>Example</strong></span></p>
<p>Here is an iframe code for <strong>Facebook Like Box</strong>:-</p>
<pre class="brush: xml; title: ; notranslate">
&lt;iframe src=&quot;http://www.facebook.com/plugins/likebox.php?profile_id=62473189912&amp;width=300&amp;height=255&amp;connections=10&amp;stream=false&amp;header=false&amp;locale=en_US&quot;  scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border: medium none; overflow: hidden; width: 300px; height: 255px;&quot; allowTransparency=&quot;true&quot;&gt;&lt;/iframe&gt;
</pre>
<p>Using the above IFrame code in your website gives errors when you validate with W3C.</p>
<p>So, the solution is to use Object tag. You will not get the validation errors by using Object.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;object style=&quot;border: medium none; overflow: hidden; width: 300px; height: 255px;&quot;  data=&quot;http://www.facebook.com/plugins/likebox.php?id=62473189912&amp;amp;width=300&amp;amp;height=255&amp;amp;connections=10&amp;amp;header=false&quot;&gt;&lt;/object&gt;
</pre>
<p>It&#8217;s the same case with including <strong>Google Maps</strong> in websites.</p>
<p>Hope this helps. Thanks.</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=877&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/jquery-grey-out-background-and-preview-image-as-popup/' rel='bookmark' title='Permanent Link: jQuery: Grey out background and preview image as popup'>jQuery: Grey out background and preview image as popup</a></li>
<li><a href='http://blog.chapagain.com.np/magento-get-width-height-of-image-using-varien_image-class/' rel='bookmark' title='Permanent Link: Magento: Get width height of image using Varien_Image class'>Magento: Get width height of image using Varien_Image class</a></li>
<li><a href='http://blog.chapagain.com.np/octopus-pauls-prediction-spain-will-win-the-fifa-2010-worldcup/' rel='bookmark' title='Permanent Link: Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010'>Octopus Paul&#8217;s Prediction: Spain will win the FIFA Worldcup 2010</a></li>
<li><a href='http://blog.chapagain.com.np/hardware-interrupt/' rel='bookmark' title='Permanent Link: Hardware Interrupt'>Hardware Interrupt</a></li>
<li><a href='http://blog.chapagain.com.np/magento-fatal-error-call-to-a-member-function-gettable-on-a-non-object/' rel='bookmark' title='Permanent Link: Magento: Fatal error: Call to a member function getTable() on a non-object'>Magento: Fatal error: Call to a member function getTable() on a non-object</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/w3c-validation-iframe-error-with-xhtml-1-0-strict-doctype/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Creating dynamic table in PHP : Easy and Simple tutorial</title>
		<link>http://blog.chapagain.com.np/creating-dynamic-table-in-php/</link>
		<comments>http://blog.chapagain.com.np/creating-dynamic-table-in-php/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 05:04:22 +0000</pubDate>
		<dc:creator>Mukesh</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/2007/12/09/creating-dynamic-table-in-php/</guid>
		<description><![CDATA[Problem: I want to create a dynamic table with a row starting after certain number of columns, i.e. like, i want to create an html table which automatically generate new row after 3 columns in a row. Solution: Here, $content is an array of 9 numbers (1 to 9). The array value can be any. [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/' rel='bookmark' title='Permanent Link: Add, edit, delete, login, register in PHP :: A simple and complete tutorial'>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/php-how-to-get-stock-quote-data-from-yahoo-finance-complete-code-and-tutorial/' rel='bookmark' title='Permanent Link: PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)'>PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)</a></li>
<li><a href='http://blog.chapagain.com.np/alter-mysql-table-to-add-drop-column-add-foreign-key/' rel='bookmark' title='Permanent Link: Alter MySQL table to add &#038; drop column &#038; add Foreign Key'>Alter MySQL table to add &#038; drop column &#038; add Foreign Key</a></li>
<li><a href='http://blog.chapagain.com.np/simple-and-easy-jquery-tabs-with-ajax-and-php/' rel='bookmark' title='Permanent Link: Simple and easy jQuery tabs with AJAX and PHP'>Simple and easy jQuery tabs with AJAX and PHP</a></li>
<li><a href='http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/' rel='bookmark' title='Permanent Link: Very simple add, edit, delete, display in PHP'>Very simple add, edit, delete, display in PHP</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong></p>
<p>I want to create a dynamic table with a row starting after certain number of columns, i.e. like, i want to create an html table which automatically generate new row after 3 columns in a row.</p>
<p><strong>Solution:</strong></p>
<pre class="brush: php; title: ; notranslate">
$content = array(1, 2, 3, 4, 5, 6, 7, 8, 9);
&lt;table border=&quot;1&quot; width=&quot;50%&quot;&gt;
&lt;tr&gt;
	&lt;?php
	$counter = 0;
	foreach($content as $data) {
		if($counter != 0 &amp;&amp; $counter%3 == 0) {
			?&gt;
			&lt;/tr&gt;&lt;tr&gt;
			&lt;?php
		}
		?&gt;
		&lt;td&gt;
			&lt;?php echo $data; ?&gt;
		&lt;/td&gt;
		&lt;?php
		$counter++;
	}
?&gt;
&lt;/tr&gt;
&lt;/table&gt;
</pre>
<p><span id="more-37"></span></p>
<p>Here, <strong>$content</strong> is an array of 9 numbers (1 to 9). The array value can be any. You can have your custom array with your custom values. I have looped through the array and printed data in a html table. I have created new row after 3 columns have been created.</p>
<p>Happy PHPing!</p>
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=37&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/add-edit-delete-login-register-in-php-a-simple-and-complete-tutorial/' rel='bookmark' title='Permanent Link: Add, edit, delete, login, register in PHP :: A simple and complete tutorial'>Add, edit, delete, login, register in PHP :: A simple and complete tutorial</a></li>
<li><a href='http://blog.chapagain.com.np/php-how-to-get-stock-quote-data-from-yahoo-finance-complete-code-and-tutorial/' rel='bookmark' title='Permanent Link: PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)'>PHP: How to get stock quote data from Yahoo! Finance? (Complete Code and Tutorial)</a></li>
<li><a href='http://blog.chapagain.com.np/alter-mysql-table-to-add-drop-column-add-foreign-key/' rel='bookmark' title='Permanent Link: Alter MySQL table to add &#038; drop column &#038; add Foreign Key'>Alter MySQL table to add &#038; drop column &#038; add Foreign Key</a></li>
<li><a href='http://blog.chapagain.com.np/simple-and-easy-jquery-tabs-with-ajax-and-php/' rel='bookmark' title='Permanent Link: Simple and easy jQuery tabs with AJAX and PHP'>Simple and easy jQuery tabs with AJAX and PHP</a></li>
<li><a href='http://blog.chapagain.com.np/very-simple-add-edit-delete-display-in-php/' rel='bookmark' title='Permanent Link: Very simple add, edit, delete, display in PHP'>Very simple add, edit, delete, display in PHP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/creating-dynamic-table-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What are Meta-Tags? Full Description of Meta tags</title>
		<link>http://blog.chapagain.com.np/meta-tags/</link>
		<comments>http://blog.chapagain.com.np/meta-tags/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 06:41:50 +0000</pubDate>
		<dc:creator>mukeshChapagain</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[meta-tags]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.chapagain.com.np/?p=11</guid>
		<description><![CDATA[Meta tags are HTML tags which provide information that describes the content of the webpage a user will be viewing. Meta tags have two possible attributes: a) b) (Note: I have used my name and my links in many of the examples below. Don’t forget to put your own name and description there.) a) HTTP-EQUIV [...]


<strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/dynamically-change-page-title-and-meta-tags-in-c/' rel='bookmark' title='Permanent Link: Dynamically change page title and meta tags in C#'>Dynamically change page title and meta tags in C#</a></li>
<li><a href='http://blog.chapagain.com.np/magento-show-hide-website-to-search-engines-by-adjusting-robots-meta-tag/' rel='bookmark' title='Permanent Link: Magento: Show/Hide website to search engines by adjusting robots meta tag'>Magento: Show/Hide website to search engines by adjusting robots meta tag</a></li>
<li><a href='http://blog.chapagain.com.np/magento-setchange-page-layout-title-tag-meta-keywords-and-description/' rel='bookmark' title='Permanent Link: Magento: Set/Change page layout, title tag, meta keywords and description'>Magento: Set/Change page layout, title tag, meta keywords and description</a></li>
<li><a href='http://blog.chapagain.com.np/magento-set-title-keywords-and-description-in-your-module/' rel='bookmark' title='Permanent Link: Magento: Set title, keywords and description in your module'>Magento: Set title, keywords and description in your module</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="text-align: justify;">Meta tags are HTML tags which provide information that describes the content of the webpage a user will be viewing.</p>
<p class="MsoNormal" style="text-align: justify;">Meta tags have two possible attributes:</p>
<p><span id="more-11"></span></p>
<p class="MsoNormal" style="margin-left: 0.5in; text-align: justify; text-indent: -0.25in;"><!--[if !supportLists]--><span>a)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal;"> </span></span><!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify;"><!--[if !supportLists]--><span> b)<span style="font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal;"> </span></span><!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify;">(<span style="text-decoration: underline;">Note:<em> I have used my name and my links in many of the examples below. Don’t forget to put your own name and description there</em></span>.)</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><strong>a) HTTP-EQUIV Tags</strong></p>
<p class="MsoNormal" style="text-align: justify;">Meta tags with an HTTP-EQUIV attribute are equivalent to HTTP headers. Typically, they control the action of browsers, and may be used to refine the information provided by the actual headers. They are:-</p>
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Expires<span style="text-decoration: none;"> </span></span></p>
<p class="MsoNormal" style="text-align: justify;">The date and time after which the document should be considered expired.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-Type</span></p>
<p class="MsoNormal" style="text-align: justify;">This gives the character set.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-Script-Type</span></p>
<p class="MsoNormal" style="text-align: justify;">Specifies the default scripting language in a document.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-Style-Type</span></p>
<p class="MsoNormal" style="text-align: justify;">Specifies the default stylesheet language for the document.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Content-language</span></p>
<p class="MsoNormal" style="text-align: justify;">Used to declare the natural language of the document. May be used by robots to categorize by language. Languages are specified as the pair (language-dialect); here below, English-British (en-GB)</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Refresh</span></p>
<p class="MsoNormal" style="text-align: justify;">Specifies a delay in seconds before the browser automatically reloads the document. Optionally, specifies an alternative URL to load.</p>
<p class="MsoNormal">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Pragma</span></p>
<p class="MsoNormal" style="text-align: justify;">This tag tells IE not to cache the page.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><strong>b) NAME attributes</strong></p>
<p class="MsoNormal" style="text-align: justify;">Meta tags with a name attribute are used for other types which do not correspond to HTTP Headers. They are:-</p>
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Robots</span></p>
<p class="MsoNormal" style="text-align: justify;">Controls web robots on a per-page basis, <span style="color: black;">whether to index a page or not (index/noindex), and whether to follow links on the page or not (follow/nofollow). You can use these in any combination you want. </span></p>
<p class="MsoNormal"><code><span style="font-family: 'Times New Roman';">- <em>index, follow</em></span></code><span style="color: black;"> &#8211; Default value. Page will be indexed, and links on the page will be followed. </span></p>
<p class="MsoNormal"><code><span style="font-family: 'Times New Roman';">- <em>index, nofollow</em></span></code><span style="color: black;"> &#8211; Page will be indexed, but any links on the page will not be followed. </span></p>
<p class="MsoNormal"><code><span style="font-family: 'Times New Roman';">- <em>noindex, follow</em></span></code><span style="color: black;"> &#8211; Page will not be indexed, but links on the page will be followed. </span></p>
<p class="MsoNormal" style="text-align: justify;"><code><span style="font-family: 'Times New Roman';">- <em>noindex,nofollow</em></span></code><span style="color: black;"> &#8211; Page will not be indexed, and links on the page will not be followed.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Description<span style="text-decoration: none;"> </span></span></p>
<p class="MsoNormal" style="text-align: justify;">A short, plain language description of the document. Keep it short and to the point.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Keywords</span></p>
<p class="MsoNormal" style="text-align: justify;">Keywords are used by search engine to index our document in addition to words from the title and document body. <span style="color: black;">It lets you specify keywords people might use when looking for your site. Enter as many as you can think of, but don&#8217;t repeat each word more than once.</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Author</span></p>
<p class="MsoNormal" style="text-align: justify;">The author’s name.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Copyright</span></p>
<p class="MsoNormal" style="text-align: justify;">A copyright statement.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Rating</span></p>
<p class="MsoNormal" style="text-align: justify;">A way to say that your site is family safe.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Revisit-after</span></p>
<p class="MsoNormal" style="text-align: justify;">This tells the search engine to come back again and re-index your site every 10 days (in case of this example)</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Distribution</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Classification</span></p>
<p class="MsoNormal" style="text-align: justify;">What kind of directory heading does this come under.</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;"><span style="text-decoration: underline;">Reply-to</span></p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">Enjoy!!!</p>
<p class="MsoNormal" style="text-align: justify;">
<p class="MsoNormal" style="text-align: justify;">
<hr /><small>Copyright &copy; 2011<br /> This feed is for personal, non-commercial use only. <br /> The use of this feed on other websites breaches copyright. If this content is not in your news reader, it makes the page you are viewing an infringement of the copyright. (Digital Fingerprint:<br /> )</small><img src="http://blog.chapagain.com.np/?ak_action=api_record_view&id=11&type=feed" alt="" />

<p><strong>Related posts:</strong><ol><li><a href='http://blog.chapagain.com.np/dynamically-change-page-title-and-meta-tags-in-c/' rel='bookmark' title='Permanent Link: Dynamically change page title and meta tags in C#'>Dynamically change page title and meta tags in C#</a></li>
<li><a href='http://blog.chapagain.com.np/magento-show-hide-website-to-search-engines-by-adjusting-robots-meta-tag/' rel='bookmark' title='Permanent Link: Magento: Show/Hide website to search engines by adjusting robots meta tag'>Magento: Show/Hide website to search engines by adjusting robots meta tag</a></li>
<li><a href='http://blog.chapagain.com.np/magento-setchange-page-layout-title-tag-meta-keywords-and-description/' rel='bookmark' title='Permanent Link: Magento: Set/Change page layout, title tag, meta keywords and description'>Magento: Set/Change page layout, title tag, meta keywords and description</a></li>
<li><a href='http://blog.chapagain.com.np/magento-set-title-keywords-and-description-in-your-module/' rel='bookmark' title='Permanent Link: Magento: Set title, keywords and description in your module'>Magento: Set title, keywords and description in your module</a></li>
<li><a href='http://blog.chapagain.com.np/wordpress-archive-link-not-working/' rel='bookmark' title='Permanent Link: WordPress: Archive link not working'>WordPress: Archive link not working</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.chapagain.com.np/meta-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
