<?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>PSD to HTML&#124; seoSemanticXHTML BLOG &#187; web standards</title>
	<atom:link href="http://blog.seo-semantic-xhtml.com/category/web-standards/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.seo-semantic-xhtml.com</link>
	<description>PSD to HTML, PSD to wordpress</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Why to prefer Microdata over RDF/RDFa and Microformats?</title>
		<link>http://blog.seo-semantic-xhtml.com/web-standards/why-to-prefer-microdata-over-rdfrdfa-and-microformats/</link>
		<comments>http://blog.seo-semantic-xhtml.com/web-standards/why-to-prefer-microdata-over-rdfrdfa-and-microformats/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 11:50:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web standards]]></category>
		<category><![CDATA[Microdata]]></category>
		<category><![CDATA[Microdata Over RDF]]></category>
		<category><![CDATA[Microformats]]></category>
		<category><![CDATA[RDF]]></category>
		<category><![CDATA[Web Standard]]></category>

		<guid isPermaLink="false">http://blog.seo-semantic-xhtml.com/?p=1055</guid>
		<description><![CDATA[Standard Rule states that CSS is supposed to have designing or presentation guideline to present the information to readers, whereas HTML should only include semantic or meaning of the information being presented. Since inception, HTML is trying to be semantic means trying to include meaningful terms instead of designing guidelines. Each step in the development [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Standard Rule states that CSS is supposed to have designing or presentation guideline to present the information to readers, whereas HTML should only include semantic or meaning of the information being presented. Since inception, HTML is trying to be semantic means trying to include meaningful terms instead of designing guidelines. Each step in the development of HTML &amp; CSS is aimed to have a better semantic markup language to present the information in a better way without losing its meaning.<span id="more-1055"></span>It remains true for the inception of CSS, RDFa, Microformat, and HTML5. HTML5 includes a meta-data specification named Microdata, which is aimed to include semantics on existing Web pages. Browsers, Web Crawlers, Screen Readers, and Search engines can extract Microdata from its container page to provide better browsing experience to the end-users. In this write up, we will discuss how Microdata is a better semantic format than previous frameworks of RDF, RDFa, and Microformats.</p>
<h2>Default Markup Code</h2>
<p style="text-align: justify;">We have following markup code created in HTML. We will implement RDF, Microformat and Microdata in this code one by one to illustrate their differences.</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;Dan Brown’s Latest Book&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div&gt;</p>
<p>&lt;h1&gt;The Lost Symbol&lt;/h1&gt;</p>
<p>&lt;span&gt;Author: Dan Brown (born June 22, 1964) &lt;/span&gt;</p>
<p>&lt;span&gt;Fiction &amp; Thriller Novel&lt;/span&gt;</p>
<p>&lt;a href=”http://www.thelostsymbol.com”&gt;The Lost Symbol Website&lt;/a&gt;</p>
<p>&lt;span&gt;Reviewed by: Mark.</p>
<p>Ratings: 4.5/5 (Excellent)</p>
<p>&lt;/span&gt;</p>
<p>&lt;span&gt;It is a thriller set in Washington, D.C., after the events of The Da Vinci Code, and relies on Freemasonry for both its recurring theme and its major characters&lt;/span&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<h2>RDF/RDFa</h2>
<p style="text-align: justify;">RDF stands for Resource Description Framework. It is based on W3C Recommendation and adds extensions to XHTML in order to embed rich metadata in Web pages. RDF was firstly introduced in 2004 and is succeeded by RDFa in 2008. RDFa is strictly connected with XHTML and supported with the XHTML1.1 doctype.</p>
<p style="text-align: justify;">Since the inception of RDF, the Webmasters are working to implement it and the big players are creating technologies based RDF like Open Graph Protocol from Facebook, OWL and SKOS. <a rel="nofollow" href="http://www.w3.org/RDF/">According to W3C</a>, several tools and implementations are built based upon RDF till yet. Let us have a look how to implement the RDF in the above default HTML code. There are different vocabularies to implement the RDFa like FOAF from XMLNS.com, DC from Purl.org, and rdf.data-vocabulary.org from Google Data-Vocabulary.org. We will use Google’s Data-Vocabulary.org in this article. If you use any other</p>
<p><span style="color: #ff0000;">&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.1//EN&#8221; &#8220;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#8221;&gt;</span></p>
<p>&lt;html <span style="color: #ff0000;">xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;</span></p>
<p><span style="color: #ff0000;">xmlns:v=http://rdf.data-vocabulary.org/#</span>&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;Dan Brown’s Latest Book&lt;/title&gt;</p>
<p><span style="color: #ff0000;">&lt;meta name=&#8221;author&#8221; content=&#8221;Dan Brown&#8221; /&gt;</span></p>
<p><span style="color: #ff0000;">&lt;link rel=&#8221;prev&#8221; href=&#8221;nextpage.html&#8221; /&gt;</span></p>
<p><span style="color: #ff0000;">&lt;link rel=&#8221;next&#8221; href=&#8221;previouspage.html&#8221; /&gt;</span></p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div&gt;</p>
<p>&lt;h1&gt;<span style="color: #ff0000;">&lt;span typeof=”v:book”&gt;</span>The Lost Symbol<span style="color: #ff0000;">&lt;/span&gt;</span>&lt;/h1&gt;</p>
<p>&lt;span&gt;<span style="color: #ff0000;">&lt;span property=&#8221;v:title&#8221;&gt;</span>Author<span style="color: #ff0000;">&lt;/span&gt;</span>: <span style="color: #ff0000;">&lt;span typeof=&#8221;v:name&#8221;&gt;</span>Dan Brown<span style="color: #ff0000;">&lt;/span&gt;</span> (born June 22, 1964) &lt;/span&gt;</p>
<p>&lt;span&gt;Fiction &amp; Thriller Novel&lt;/span&gt;</p>
<p>&lt;a href=”http://www.thelostsymbol.com” <span style="color: #ff0000;">rel=&#8221;v:url&#8221;</span>&gt;<span style="color: #ff0000;">&lt;span typeof=”v:book”&gt;</span>The Lost Symbol Website<span style="color: #ff0000;">&lt;/span&gt;</span>&lt;/a&gt;</p>
<p>&lt;span&gt;Reviewed by: <span style="color: #ff0000;">&lt;span property=&#8221;v:reviewer&#8221;&gt;</span>Mark<span style="color: #ff0000;">&lt;/span&gt;</span>.</p>
<p>Ratings: <span style="color: #ff0000;">&lt;span rel=&#8221;v:rating&#8221;&gt;</span></p>
<p><span style="color: #ff0000;">&lt;span property=&#8221;v:value&#8221;&gt;</span>4.5<span style="color: #ff0000;">&lt;/span&gt;</span>/</p>
<p><span style="color: #ff0000;">&lt;span property=&#8221;v:best&#8221;&gt;</span>5<span style="color: #ff0000;">&lt;/span&gt;</span> (Excellent)</p>
<p><span style="color: #ff0000;">&lt;/span&gt;</span></p>
<p>&lt;/span&gt;</p>
<p>&lt;span&gt;It is a thriller set in Washington, D.C., after the events of The Da Vinci Code, and relies on Freemasonry for both its recurring theme and its major characters&lt;/span&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<h3>Problems with RDFa</h3>
<p style="text-align: justify;">RDF was started with the XHTML 1.1 and 2.2. Both of these standards are discontinued now. The world is stepping up to HTML5, CSS3, and other latest standards. All the new versions of Browsers, CMSs, and even Mobile software are adopting HTML5. You cannot use xmlns and meta property attributes with HTML5 as the document will not be validated as HTML5 with these things. Today or tomorrow you have to switch over with the latest Web technologies to stay up-to-date in the market.</p>
<p style="text-align: justify;">Second problem is that there are multiple vocabularies available for RDFa. There is neither unique is no standard format nor common adaption of existing RDF technologies. In addition, there is no W3C-recommended way to embed RDFa in plain HTML. Webmasters often get confused which one to use or which one to left.</p>
<p style="text-align: justify;">Third problem: both HTML and RDF are different technologies, so you must know both of them to use RDF.</p>
<h2>Microformat</h2>
<p style="text-align: justify;">Microformat is a semantic markup, which re-uses the existing HTML/XHTML code to show metadata. The implementation of Microformat is easier than that of RDF or RDFa. If you know HTML then you can simply add Microformats to your Website. <a rel="nofollow" href="http://www.microformat.org/">Microformats.org</a> provides the complete description and other tools to implement the Microformats.</p>
<p style="text-align: justify;">Let us have a look on the following implementation of Microformat.</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;Dan Brown’s Latest Book&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div <span style="color: #ff0000;">class=”hreview”</span>&gt;</p>
<p><span style="color: #ff0000;">&lt;span class=”item vcard”&gt;</span></p>
<p>&lt;h1 <span style="color: #ff0000;">class=”item”</span>&gt;The Lost Symbol&lt;/h1&gt;</p>
<p>&lt;span&gt;Author: <span style="color: #ff0000;">&lt;span class=”fn”&gt;</span>Dan Brown<span style="color: #ff0000;">&lt;/span&gt; </span>(born June 22, 1964) &lt;/span&gt;</p>
<p>&lt;span class=”description”&gt;Fiction &amp; Thriller Novel&lt;/span&gt;</p>
<p>&lt;a <span style="color: #ff0000;">class=”url fn”</span> href=”http://www.thelostsymbol.com” <span style="color: #ff0000;">rel=”tag”</span>&gt;The Lost Symbol Website&lt;/a&gt;</p>
<p><span style="color: #ff0000;">&lt;/span&gt;</span></p>
<p>&lt;span&gt;<span style="color: #ff0000;">&lt;span class=”reviewer vcard”&gt;</span>Reviewed by: <span style="color: #ff0000;">&lt;span class=”fn”&gt;</span>Mark&lt;span&gt;.<span style="color: #ff0000;">&lt;/span&gt;</span></p>
<p>Ratings: <span style="color: #ff0000;">&lt;span class=”value”&gt;</span>4.5<span style="color: #ff0000;">&lt;/span&gt;</span>/<span style="color: #ff0000;">&lt;span class=”best”&gt;</span>5 <span style="color: #ff0000;">&lt;/span&gt;</span>(Excellent)</p>
<p>&lt;/span&gt;</p>
<p>&lt;span <span style="color: #ff0000;">class=”summary”</span>&gt;It is a thriller set in Washington, D.C., after the events of The Da Vinci Code, and relies on Freemasonry for both its recurring theme and its major characters&lt;/span&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>&nbsp;</p>
<p>Following is sample vCard created with Microformats</p>
<p>&lt;div&gt;</p>
<p>&lt;img class=&#8221;photo&#8221; src=&#8221;http://upload.wikimedia.org/wikipedia/commons/8/8b/Dan_Brown_bookjacket_cropped.jpg&#8221; /&gt;</p>
<p>&lt;strong class=&#8221;fn&#8221;&gt;Dan Brown&lt;/strong&gt;</p>
<p>&lt;span class=&#8221;title&#8221;&gt;Author&lt;/span&gt; at &lt;span class=&#8221;org&#8221;&gt;Simons &amp; Chuster&lt;/span&gt;</p>
<p>&lt;span&gt;</p>
<p>&lt;span class=&#8221;street-address&#8221;&gt;200 Main St&lt;/span&gt;</p>
<p>&lt;span class=&#8221;locality&#8221;&gt;Desertville&lt;/span&gt;, &lt;span class=&#8221;region&#8221;&gt;AZ&lt;/span&gt;</p>
<p>&lt;span class=&#8221;postal-code&#8221;&gt;12345&lt;/span&gt;</p>
<p>&lt;a class=”url fn” rel=”tag” href=”http://www.danbrown.com”&gt;Official Website&lt;/a&gt;</p>
<p>&lt;/span&gt;</p>
<p>&lt;/div&gt;</p>
<p>Currently, Microformats.org provides definition for following Microformats:</p>
<ol>
<li>adr</li>
<li>geo</li>
<li>hAtom – syndicating RSS content</li>
<li>hAudio</li>
<li>hListing</li>
<li>hMedia</li>
<li>hNews</li>
<li>hProduct</li>
<li>hRecipe</li>
<li>hReview</li>
<li>rel-directory</li>
<li>rel-enclosure</li>
<li>rel-home</li>
<li>rel-payment</li>
<li>robots exclusion</li>
<li>xFolk</li>
</ol>
<h2>Problems with Microformats</h2>
<p style="text-align: justify;">Several issues were detected and reported with Microformats. BBC Radio was using the hCalendar Microformat to add the start &amp; end times, broadcasting channels etc. However, BBC found issues with hCalendar and dropped its usage. <a rel="nofollow" href="http://microformats.org/wiki/accessibility-issues">Accessibility issues are listed with hCalendar</a>, and <a rel="nofollow" href="http://microformats.org/wiki/audio-info-issues">audio information issues with hAudio</a> at Microformats.org. In addition, issues with <a rel="nofollow" href="http://microformats.org/wiki/hatom-issues">hAtom</a> and <a rel="nofollow" href="http://microformats.org/wiki/hproduct-issues">hProduct</a> are also mentioned there. In addition, Microformats does not have any specification to replace the existing Semantic or meta-data format RDF &amp; RDFa. It is just reusing the existing XHTML document. After seeing the issues, everyone was just moving backward to RDF or not considering the Microformats appropriate for their work.</p>
<h2 style="text-align: justify;">Microdata</h2>
<p style="text-align: justify;">Microdata is the latest meta-data or semantic specification for HTML5 from WHATWG and W3C. It is considered as an integral part of HTML5 and use vocabularies from <a rel="nofollow" href="http://www.schema.org/">Schema.org</a>. Recently, all three major search engines Google, Bing and Yahoo agreed to have a common specification Microdata for semantic markup show the rich snippets of Websites in their search engine result pages (SERPs). They’ve recommended using Microdata and shifting from previous meta-data format to this one.  Let us see how to implement the Microdata in the above mentioned default HTML code.</p>
<p>&lt;div <span style="color: #ff0000;">itemscope itemtype=&#8221;http://schema.org/Book&#8221;</span>&gt;</p>
<p>&lt;h1&gt;<span style="color: #ff0000;">&lt;span itemprop=&#8221;name&#8221;&gt;</span>The Lost Symbol<span style="color: #ff0000;">&lt;/span&gt;</span>&lt;/h1&gt;</p>
<p>&lt;span&gt;Author: <span style="color: #ff0000;">&lt;span itemprop=&#8221;author&#8221;&gt;</span>Dan Brown<span style="color: #ff0000;">&lt;/span&gt;</span> (born <span style="color: #ff0000;">&lt;span itemprop=&#8221;birthDate&#8221;&gt;</span>June 22, 1964<span style="color: #ff0000;">&lt;/span&gt;</span>) &lt;/span&gt;</p>
<p>&lt;span&gt; Fiction &amp; Thriller Novel&lt;/span&gt;</p>
<p>&lt;a <span style="color: #ff0000;">itemprop=&#8221;book&#8221;</span> href=”http://www.thelostsymbol.com”&gt;The Lost Symbol Website&lt;/a&gt;</p>
<p><span style="color: #ff0000;">&lt;div itemprop=&#8221;reviews&#8221; itemscope itemtype=&#8221;http://schema.org/Review&#8221;&gt;</span></p>
<p>&lt;span&gt;Reviewed by: <span style="color: #ff0000;">&lt;span itemprop=&#8221;author&#8221;&gt;</span>Mark<span style="color: #ff0000;">&lt;/span&gt;</span>.</p>
<p><span style="color: #ff0000;">&lt;div itemprop=&#8221;reviewRating&#8221; itemscope itemtype=&#8221;http://schema.org/Rating&#8221;&gt;</span></p>
<p>Ratings: <span style="color: #ff0000;">&lt;span itemprop=&#8221;ratingValue&#8221;&gt;</span>4.5<span style="color: #ff0000;">&lt;/span&gt;</span> / <span style="color: #ff0000;">&lt;span itemprop=&#8221;bestRating&#8221;&gt;</span>5<span style="color: #ff0000;">&lt;/span&gt;</span> (Excellent)</p>
<p><span style="color: #ff0000;">&lt;/div&gt;&lt;!—Closing reviewsRating&#8211;&gt;</span></p>
<p>&lt;/span&gt;</p>
<p>&lt;span<span style="color: #ff0000;"> itemprop=&#8221;reviewBody&#8221;</span>&gt;It is a thriller set in Washington, D.C., after the events of The Da Vinci Code, and relies on Freemasonry for both its recurring theme and its major characters&lt;/span&gt;</p>
<p><span style="color: #ff0000;">&lt;/div&gt;&lt;!—Closing reviews&#8211;&gt;</span></p>
<p>&lt;/div&gt;</p>
<h2>Why not to use others?</h2>
<p style="text-align: justify;">Most of the Content Management Systems are stepping towards HTML5 and CSS3. You cannot use the RDF or RDFa with HTML5 as you’ve to include xmlns protocol or vocabulary. In addition, Microformats are not sufficient to override all the classes of RDF/RDFa.</p>
<h2>Benefits of Microdata</h2>
<ol>
<li>Microdata is a set of tags introduced with HTML5.</li>
<li>It overrides (defines) all the classes of RDF, RDFa and Microformats.</li>
<li>You know HTML then you can use both HTML5 &amp; Microdata.</li>
<li>Bing, Google and Yahoo have recognized Metadata as the standard format of semantic markup. They recommend using it and migrating from previous semantic format to Microdata.</li>
<li>You just have to add a few more classes in the existing HTML code to implement Microdata.</li>
<li>With Microdata, your Website will gain preference in the SERPs.</li>
<li>Schema.org has all the definitions for Microdata classes and will work with major search engines to add more in its database.</li>
<li>You can further extend the Microdata as per requirement.</li>
</ol>
<h2>Conclusion</h2>
<p style="text-align: justify;">The semantic markup is considered as a need for human being since the inception of HTML &amp; CSS. Yes, we agree that previously RDF, RDFa and Microformats tried to help us in integrating the semantic markup. Now, there is another new format in the market. The same observation goes for HTML2, HTML3, HTML4, XHTML1, XHTML, CSS1 and CSS2. Why do you want to leave these formats and step ahead to adopt HTML5 and CSS3?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seo-semantic-xhtml.com/web-standards/why-to-prefer-microdata-over-rdfrdfa-and-microformats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving towards Microformats for more Semantic Web</title>
		<link>http://blog.seo-semantic-xhtml.com/web-standards/moving-towards-microformats-for-more-semantic-web/</link>
		<comments>http://blog.seo-semantic-xhtml.com/web-standards/moving-towards-microformats-for-more-semantic-web/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 13:38:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web standards]]></category>
		<category><![CDATA[Microformats]]></category>
		<category><![CDATA[Microformats Semantic Web]]></category>
		<category><![CDATA[Semantic]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.seo-semantic-xhtml.com/?p=1051</guid>
		<description><![CDATA[There is constant demand to write semantic code for a website for it attaches more meaning to the pages and helps search engines to better understand the web pages. Though there are several ways of accomplishing this but Microformats seem to have occupied the centre stage and are increasingly being used to create a meaningful [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">There is constant demand to write semantic code for a website for it attaches more meaning to the pages and helps search engines to better understand the web pages. Though there are several ways of accomplishing this but Microformats seem to have occupied the centre stage and are increasingly being used to create a meaningful markup. The primary advantage of using Microformats is that they help develop structured data which is easy to understand by search engines and aid their indexing process.</p>
<p style="text-align: justify;">However, before proceeding further to discuss the benefits of using Microformats, let us first have a quick understanding about them.</p>
<p style="text-align: justify;"><strong>What are Microformats?</strong></p>
<p style="text-align: justify;">Microformats are a set of simple formats that helps create effective metadata and thus enhance the semantic value of a code.</p>
<p style="text-align: justify;">The widely acclaimed definition of Microformats from <strong>microformats.org </strong>states:</p>
<p style="text-align: justify;">“<em>Designed for humans first and machines second, Microformats are a set of simple, open data formats built upon existing and widely adopted standards</em>.”</p>
<p style="text-align: justify;">The best feature of Microformats is that they can be easily integrated into the existing XHTML mark up and prove beneficial in describing the web content accurately and in a consistent manner.</p>
<p style="text-align: justify;"><strong>How do Microformats enhance semantic value?</strong></p>
<p style="text-align: justify;">Though HTML and XHTML do provide elements to lend semantic meaning to web page content but Microformats are able to do it more effectively by using the following attributes:</p>
<ul style="text-align: justify;">
<li>Class</li>
<li>Rel</li>
<li>Rev</li>
</ul>
<p style="text-align: justify;"><strong>Why use Microformats?</strong></p>
<p style="text-align: justify;"><strong>Adherence to standards</strong></p>
<p style="text-align: justify;">As web standards compliance is necessary for a website, Microformats are built keeping this in mind and thus will ensure that code adheres to existing standards.</p>
<p style="text-align: justify;"><strong>Ensure Inter-operability </strong></p>
<p style="text-align: justify;">Using Microformats will ensure that the site is viewable in different browsers, operating systems as well as mobile devices.</p>
<p style="text-align: justify;"><strong>Flexibility</strong></p>
<p style="text-align: justify;">Microformats allow the desired flexibility to the users to control and share data over the Web.</p>
<p style="text-align: justify;"><strong>Adaptability</strong></p>
<p style="text-align: justify;">Microformats are highly adaptable to the existing behaviors and web usage patterns that ease out the tasks for site owners</p>
<p style="text-align: justify;"><strong>Search Engine Friendliness</strong></p>
<p style="text-align: justify;">As Microformats create machine readable and more meaningful metadata, it lends search engine friendliness to the site</p>
<p style="text-align: justify;"><strong>Consistent Content </strong></p>
<p style="text-align: justify;">With the ability to share a Microformat with content providers, it becomes possible to create consistent content and in the manner as desired</p>
<p style="text-align: justify;"><strong>Meant for Future Web</strong></p>
<p style="text-align: justify;">As the emphasis to have semantic mark up gains more prominence, the use of Microformats is going to increase making it ideal for the future Web</p>
<p style="text-align: justify;">Though it offers these advantages, there are also some <strong>drawbacks</strong> associated with Microformats including:</p>
<ul style="text-align: justify;">
<li>They add on the to the HTML markup</li>
<li>Though they are easy to use but the user still has to devote time learning to make the proper use</li>
<li>All browsers may not show full support for Microformats</li>
</ul>
<p style="text-align: justify;"><strong>Some Useful Microformats</strong></p>
<p style="text-align: justify;"><a rel="nofollow" href="http://microformats.org/wiki/geo">Geo</a> – For marking geographic location</p>
<p style="text-align: justify;"><a rel="nofollow" href="http://microformats.org/wiki/hcalendar">hCalendar</a> – used to mark events and calendar</p>
<p style="text-align: justify;"><a rel="nofollow" href="http://microformats.org/wiki/hcard">hCard</a> – useful for representing personal and business contacts</p>
<p style="text-align: justify;"><a rel="nofollow" href="http://microformats.org/wiki/rel-nofollow">rel=&#8221;nofollow&#8221;</a> – Elemental Microformat that adds no-follow attribute to links</p>
<p style="text-align: justify;"><a rel="nofollow" href="http://microformats.org/wiki/vote-links">VoteLinks</a> – allows liking or disliking a link</p>
<p style="text-align: justify;"><a rel="nofollow" href="http://microformats.org/wiki/robots-exclusion">Robot Exclusion Profile</a> – provides page-specific direction to web crawlers</p>
<p style="text-align: justify;">For more Microformats, you can visit <a rel="nofollow" href="http://microformats.org/wiki/Main_Page">http://microformats.org/wiki/Main_Page</a>.</p>
<p style="text-align: justify;">&nbsp;</p>
<p style="text-align: justify;">So, creating a well structured and semantic mark up is no longer a trouble as Microformats provide the right help. We hope that you liked the above information. Kindly provide some more suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seo-semantic-xhtml.com/web-standards/moving-towards-microformats-for-more-semantic-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Site’s Speed Optimization for Better User Experience</title>
		<link>http://blog.seo-semantic-xhtml.com/web-standards/site-speed-optimization-for-better-user-experience/</link>
		<comments>http://blog.seo-semantic-xhtml.com/web-standards/site-speed-optimization-for-better-user-experience/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 11:57:15 +0000</pubDate>
		<dc:creator>Keshav</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[Optimize Page Load]]></category>
		<category><![CDATA[page loading speed]]></category>
		<category><![CDATA[Speed Up Load Time]]></category>
		<category><![CDATA[Test Website Speed]]></category>
		<category><![CDATA[Website Loading Speed]]></category>
		<category><![CDATA[Website Optimization]]></category>
		<category><![CDATA[Website Optimizer Tools]]></category>
		<category><![CDATA[Website Speed Analysis]]></category>

		<guid isPermaLink="false">http://blog.seo-semantic-xhtml.com/?p=956</guid>
		<description><![CDATA[A website is weighed against various parameters in order to ensure that it enables a friendly user experience. One of these factors, which is of immense importance is the speed of the site or in other words, the time taken by the site to load itself. If a site loads fast, it allows users to [...]]]></description>
			<content:encoded><![CDATA[<p>A website is weighed against various parameters in order to ensure that it enables a friendly user experience. One of these factors, which is of immense importance is the speed of the site or in other words, the time taken by the site to load itself. If a site loads fast, it allows users to quickly get the information they wish to know. This is an important consideration as users usually don’t prefer to wait for long. Also, having a fast site can create a competitive advantage for webmasters as site’s speed has made it to list of Google ranking factors. Therefore, efforts must be made to improve the speed of the site. We are going to highlight some of the effective ways of optimizing the site’s speed to enable a pleasant user experience.<span id="more-956"></span></p>
<h2>Code –Optimize It First</h2>
<p>It must be ensured that the source code is not bulky. The HTML and CSS documents must not contain unnecessary characters that may increase the file size and affect load speed. Optimizing the code is the basic thing to do.</p>
<p>&nbsp;</p>
<h2>Minimizing HTTP Requests</h2>
<p>It is important to minimize the HTTP requests made to the server as they increase the downloading time, thereby decreasing the speed.  Two effective ways to reduce the number of such requests include:</p>
<p>&nbsp;</p>
<h2>Using CSS Sprites</h2>
<p>This is a useful way to lessen the number of image requests and it does so by combining all background images into a single image.</p>
<p>&nbsp;</p>
<h2>Combining Files into Libraries</h2>
<p>Combining various files, say scripts and stylesheets, and creating their libraries is another way to reduce the number of HTTP requests.</p>
<p>&nbsp;</p>
<h2>External CSS and JS Files</h2>
<p>It is a good practice to keep the CSS and JavaScript files as external components as this reduces the number of HTTP requests and thus leads to fast loading pages. As these files are cached, keeping them inline delays the rendering of the web page.</p>
<p>&nbsp;</p>
<h2>Make Use of Caching Systems</h2>
<p>Caching systems are the best option as the files don’t need to be downloaded several times if these are used. They help load the site faster by caching all files. You can enable the Browser Cache, Page Cache and Disk Cache for your Website.</p>
<p>&nbsp;</p>
<h2>Optimize the Images</h2>
<p>Images are known to increase the loading time, thus it makes sense to optimize them so that they don’t affect the speed negatively. There are several image editing software that can be utilized for this purpose. They allow saving images in different suitable formats such as PNG &amp; JPEG while reducing the file size which ultimately results in fast loading site.</p>
<p>&nbsp;</p>
<h2>Usage of Content Delivery Network (CDN)</h2>
<p>It is a great thing to make available the content across multiple locations across the globe so that users see it. In this regard, using a CDN can come handy and will allow the users to access the site easily; no matter how far they are located. A CDN does so by caching the content and making it available across distant servers so that the site downloads fast and users face no problems in seeing it.</p>
<p>&nbsp;</p>
<h2>Go for Gzip</h2>
<p>Gzip Compression is an efficient means used by sites to reduce the size of various files whether HTML, CSS or JS, etc. Using Gzip reduces the response time and makes a site faster.</p>
<p>&nbsp;</p>
<h2>Keeping CSS at Top and JS at Bottom</h2>
<p>To enable progressive rendering and make pages load faster, it is a good practice to keep CSS at the top of the page. On the other hand, having JS files at the end of the page helps as it then doesn’t prevent the browser from downloading other components.</p>
<p>&nbsp;</p>
<h2>Redirects Should be Avoided</h2>
<p>For the simple reason that they cause delay and hamper user experience by taking more time, Redirects must be avoided to maintain a good speed for the site.</p>
<p>Site’s speed is important as it directly affects the users’ experience and is one of the ranking factors, therefore it must be dealt with serious attention.  A site needs to load fast and allow users to quickly view the content.</p>
<p>We hope that the above mention practices provide some insights to our readers. We would be delighted to get suggestions and opinions from our readers.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seo-semantic-xhtml.com/web-standards/site-speed-optimization-for-better-user-experience/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Web Standards</title>
		<link>http://blog.seo-semantic-xhtml.com/web-standards/web-standards/</link>
		<comments>http://blog.seo-semantic-xhtml.com/web-standards/web-standards/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 06:28:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web standards]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[w3c standard]]></category>

		<guid isPermaLink="false">http://www.seo-semantic-xhtml.com/blog/?p=37</guid>
		<description><![CDATA[Does your website look different on different browsers? Does it take a lot of time to make even a small change on your website? Do you have bandwidth concern? Does your website takes lot of time to load? The solution for any of the above mentioned issues is &#8220;Web Standard compliant website&#8220;. Founded in 1998, [...]]]></description>
			<content:encoded><![CDATA[<p>Does your website look different on different browsers? Does it take a lot of time to make even a small change on your website? Do you have bandwidth concern? Does your website takes lot of time to load?</p>
<p>The solution for any of the above mentioned issues is &#8220;<a href="http://www.seo-semantic-xhtml.com/" target="_blank">Web Standard compliant website</a>&#8220;.</p>
<p>Founded in 1998, web standard is a general term for the formal standard and other technical specification, established by W3C and other standard bodies. Their aim is to increase the accessibility of web pages.</p>
<p><strong>Why use web standards?</strong><br />
Using web standards improve the accessibility of the websites, reduce development and maintenance time, improve search engine rankings and can also improve accessibility.</p>
<p>This is why it is always advisable to follow standards based approach while developing a website.</p>
<p><strong>1. Separation of Content and presentation:</strong><br />
In standard-based approach, XHTML is used for content, structure and Cascading Style Sheet (CSS) for presentation. Separating content and presentation improves the accessibility of the webs pages across browsers and Operating system.</p>
<p><strong>2. Improved efficiency:</strong><br />
By separating content and presentation, we reduce page weight, which in turn results into lower bandwidth costs.</p>
<p><strong>3. Lower site maintenance cost:</strong><br />
Having all the styles defined in single CSS file makes the maintenance easy. It is easy to understand the semantic and structured code even though created by some one else.</p>
<p><strong>4. Consistent Look and Feel:</strong><br />
All styles are defined separately in a central CSS file. Separation of style from the content gives a consistent look and feel to the website.</p>
<p><strong>5. Increased Accessibility:</strong><br />
Standard based websites work well with assistive devices including screen-reader or Braille terminals.</p>
<p><strong>6. Cross browser compatible:</strong><br />
Writing clean code that conforms to the W3C standards will give <a href="http://www.seo-semantic-xhtml.com/blog/browsers/10-helpful-resources-for-cross-browser-testing">consistent results across all browser platforms</a>. Major browsers include – IE6, IE7, Safari, firefox (Windows and Mac), Opera.</p>
<p><strong>7. Non-Desktop Browser Compatibility:</strong><br />
Separating content and presentation, makes it easy to build custom style sheets for non-desktop browsers. Its easy to define separate CSS for mobile, PDAs, Print etc.</p>
<p><strong>8. Improved search engine ranking:</strong><br />
<a href="http://www.seo-semantic-xhtml.com/" target="_blank">CSS driven website</a> helps in improving content to code ration by removing junk code. This improves the structural organization of the code, thereby improving its readability. Using optimized content rich code makes it easy for the search engine to index it more accurately which results in better ranking</p>
<p><strong>Conclusion</strong>:<br />
In nutshell, standard based websites are more accessible across all browsers, operating systems and different devices. They use low bandwidth and perform well in search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.seo-semantic-xhtml.com/web-standards/web-standards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

