<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Style Press, Best Practices from all the Web, Build Better Websites &#187; tags</title>
	<atom:link href="http://www.webstylepress.com/tag/tags/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webstylepress.com</link>
	<description>Web VS Style</description>
	<lastBuildDate>Mon, 26 Dec 2011 10:35:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>What is Superscript and Subscript in HTML</title>
		<link>http://www.webstylepress.com/superscript-and-subscript/</link>
		<comments>http://www.webstylepress.com/superscript-and-subscript/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 14:46:14 +0000</pubDate>
		<dc:creator>Hiroshi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://www.webstylepress.com/?p=43</guid>
		<description><![CDATA[In HTML we use tags for subscript and superscript like below: Subscript ABCDEF av Superscript ABCDEF 12 i.e. ABCDEF &#60;sub&#62;av&#60;/sub&#62; ABCDEF &#60;sup&#62;12&#60;/sup&#62; What is Superscript and Subscript in HTML is a post from: Web Style Press, Best Practices from all the Web, Build Better Websites Related PostsList Style Types Examples and Best PracticesLorem ipsum Ready [...]<p><a href="http://www.webstylepress.com/superscript-and-subscript/">What is Superscript and Subscript in HTML</a> is a post from: <a href="http://www.webstylepress.com">Web Style Press, Best Practices from all the Web, Build Better Websites</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In HTML we use tags for subscript and superscript like below:</p>
<p><span id="more-36"></span></p>
<h5>Subscript</h5>
<p>ABCDEF <sub>av</sub></p>
<h5>Superscript</h5>
<p>ABCDEF <sup>12</sup></p>
<p>i.e.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">ABCDEF &lt;sub&gt;av&lt;/sub&gt;
ABCDEF &lt;sup&gt;12&lt;/sup&gt;</pre></div></div>

<p><a href="http://www.webstylepress.com/superscript-and-subscript/">What is Superscript and Subscript in HTML</a> is a post from: <a href="http://www.webstylepress.com">Web Style Press, Best Practices from all the Web, Build Better Websites</a></p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.webstylepress.com/list-style-types/" title="List Style Types Examples and Best Practices">List Style Types Examples and Best Practices</a></li><li><a href="http://www.webstylepress.com/lorem-ipsum-ready/" title="Lorem ipsum Ready to Use">Lorem ipsum Ready to Use</a></li><li><a href="http://www.webstylepress.com/use-any-font-in-webpages-as-text/" title="Use Any Font in Webpages As Text">Use Any Font in Webpages As Text</a></li><li><a href="http://www.webstylepress.com/modern-font-styles-for-websites/" title="Modern Font Styles For Websites">Modern Font Styles For Websites</a></li><li><a href="http://www.webstylepress.com/wrapping-text/" title="Wrapping Text &#8211; Breaking Text with No Spaces into New Line">Wrapping Text &#8211; Breaking Text with No Spaces into New Line</a></li><li><a href="http://www.webstylepress.com/w3c-validation-tips/" title="W3C Validation Tips and Best Practices">W3C Validation Tips and Best Practices</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.webstylepress.com/superscript-and-subscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List Style Types Examples and Best Practices</title>
		<link>http://www.webstylepress.com/list-style-types/</link>
		<comments>http://www.webstylepress.com/list-style-types/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 06:09:10 +0000</pubDate>
		<dc:creator>Hiroshi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[li]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[ul]]></category>

		<guid isPermaLink="false">http://www.webstylepress.com/?p=28</guid>
		<description><![CDATA[Many options are available for list styles as following. We can define a disc style like below. ul &#123; list-style: disc; &#125; And a custom image replacing disc or any style like below. ul &#123; list-style: disc url&#40;arrow.gif&#41;; &#125; Here is the list of possible styling. View In Browser and Download List Style Types Examples [...]<p><a href="http://www.webstylepress.com/list-style-types/">List Style Types Examples and Best Practices</a> is a post from: <a href="http://www.webstylepress.com">Web Style Press, Best Practices from all the Web, Build Better Websites</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Many options are available for list styles as following.  </p>
<p><span id="more-27"></span></p>
<p>We can define a disc style like below.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">ul <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">disc</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>And a custom image replacing disc or any style like below.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">ul <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">list-style</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">disc</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">arrow.gif</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Here is the list of possible styling.</p>
<p><a href="http://www.webstylepress.com/wp-content/uploads/2008/09/list-styles.gif" target="_blank"><img src="http://www.webstylepress.com/wp-content/uploads/2008/09/list-styles.gif" alt="list styles" title="list-styles" width="338" height="2312" class="size-full wp-image-32" /></a></p>
<p><a rel="nofollow" target="_blank" href="http://www.techmynd.com/blogFiles/lists.html">View In Browser and Download</a></p>
<p><a href="http://www.webstylepress.com/list-style-types/">List Style Types Examples and Best Practices</a> is a post from: <a href="http://www.webstylepress.com">Web Style Press, Best Practices from all the Web, Build Better Websites</a></p>
<h2  class="related_post_title">Related Posts</h2><ul class="related_post"><li><a href="http://www.webstylepress.com/superscript-and-subscript/" title="What is Superscript and Subscript in HTML">What is Superscript and Subscript in HTML</a></li><li><a href="http://www.webstylepress.com/lorem-ipsum-ready/" title="Lorem ipsum Ready to Use">Lorem ipsum Ready to Use</a></li><li><a href="http://www.webstylepress.com/use-any-font-in-webpages-as-text/" title="Use Any Font in Webpages As Text">Use Any Font in Webpages As Text</a></li><li><a href="http://www.webstylepress.com/javascript-essentials-part-2/" title="Javascript Essentials Part 2">Javascript Essentials Part 2</a></li><li><a href="http://www.webstylepress.com/modern-font-styles-for-websites/" title="Modern Font Styles For Websites">Modern Font Styles For Websites</a></li><li><a href="http://www.webstylepress.com/html-quick-reference/" title="HTML Quick Reference &#8211; Complete Guide">HTML Quick Reference &#8211; Complete Guide</a></li><li><a href="http://www.webstylepress.com/wrapping-text/" title="Wrapping Text &#8211; Breaking Text with No Spaces into New Line">Wrapping Text &#8211; Breaking Text with No Spaces into New Line</a></li><li><a href="http://www.webstylepress.com/w3c-validation-tips/" title="W3C Validation Tips and Best Practices">W3C Validation Tips and Best Practices</a></li><li><a href="http://www.webstylepress.com/seo-resources/" title="SEO Tips, Search Engines and Directories Links to Submit Website &#8211; Website Promotion">SEO Tips, Search Engines and Directories Links to Submit Website &#8211; Website Promotion</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.webstylepress.com/list-style-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

