<?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>IdealProgrammer.com &#187; HTML / CSS</title> <atom:link href="http://idealprogrammer.com/category/code-samples/html-css/feed/" rel="self" type="application/rss+xml" /><link>http://idealprogrammer.com</link> <description>Take a Little Action each Day to Transform Yourself into the Ideal Programmer</description> <lastBuildDate>Sun, 22 Apr 2012 16:50:40 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>new css trick to show/hide content</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/#comments</comments> <pubDate>Thu, 02 Dec 2010 15:36:37 +0000</pubDate> <dc:creator>Saurabh</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2938</guid> <description><![CDATA[<h5><strong><big>I just found out a new way of showing/hiding images( </big><span
style="color: #ff0000"><big>In this tutorial we will talk about images only. But the technique can be applied to any element)</big></span></strong></h5><p>Well first we need an image . Well most of you would like to use photoshop or other image editing app.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/" class="more-link">Read more on new css trick to show/hide content&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/">new css trick to show/hide content</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/style-html-content-area/' rel='bookmark' title='Permanent Link: How can you style your html content area'>How can you style your html content area</a> <small>If you are deciding to make your own website or...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/' rel='bookmark' title='Permanent Link: How to make a simple navigation bar'>How to make a simple navigation bar</a> <small>In this tutorial . I will show you how you...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/images-correctly-html/' rel='bookmark' title='Permanent Link: How to use images correctly in html'>How to use images correctly in html</a> <small>Webpages are not complete without images ? But it is...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/">new css trick to show/hide content</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/style-html-content-area/' rel='bookmark' title='Permanent Link: How can you style your html content area'>How can you style your html content area</a> <small>If you are deciding to make your own website or...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/' rel='bookmark' title='Permanent Link: How to make a simple navigation bar'>How to make a simple navigation bar</a> <small>In this tutorial . I will show you how you...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/images-correctly-html/' rel='bookmark' title='Permanent Link: How to use images correctly in html'>How to use images correctly in html</a> <small>Webpages are not complete without images ? But it is...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<h5><strong><big>I just found out a new way of showing/hiding images( </big><span
style="color: #ff0000"><big>In this tutorial we will talk about images only. But the technique can be applied to any element)</big></span></strong></h5><p>Well first we need an image . Well most of you would like to use photoshop or other image editing app.</p><p>Go For it !!!</p><p>After you have an image .</p><ol><li>See the width and height of the image .</li><li>Now write an css rule for the image</li><li>We will only use image tag no id (to make it simple)</li></ol><p>Css:-</p><p>img{</p><p>position:absolute;</p><p>width:400px;</p><p>height:200px;</p><p>left:-350px;</p><p>top:10px;</p><p>}</p><p>Note for this tutorial i took an image of width- 400px and height-200px . And i am positioning it at 10px from the top and -350 px from the left ( That&#039;s the trick) .</p><p>If we specify a negative value to left it will start from that value but we cant see that part of the image. I uses -350px because i only want to show 50px of image portion on my page . Rest 350px will not be displayed on the page.</p><p>Now comes the hover effect</p><p>css:-</p><p>img:hover{</p><p>left:0px;</p><p>}</p><p>Just this much of code. Here we specify that image should be 0px from the left so that it can visible on the page.</p><p>By doing this we can see full image . And when we release the mouse pointer from image to other part of body image again goes to -350px from the left and only 50px image is visible.</p><p>&nbsp;</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/">new css trick to show/hide content</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/style-html-content-area/' rel='bookmark' title='Permanent Link: How can you style your html content area'>How can you style your html content area</a> <small>If you are deciding to make your own website or...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/' rel='bookmark' title='Permanent Link: How to make a simple navigation bar'>How to make a simple navigation bar</a> <small>In this tutorial . I will show you how you...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/images-correctly-html/' rel='bookmark' title='Permanent Link: How to use images correctly in html'>How to use images correctly in html</a> <small>Webpages are not complete without images ? But it is...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/css-trick-showhide-content/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to make a simple navigation bar</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/#comments</comments> <pubDate>Fri, 26 Nov 2010 17:05:10 +0000</pubDate> <dc:creator>Saurabh</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2923</guid> <description><![CDATA[<p>In this tutorial . I will show you how you can make a simple horizontal navigation bar.</p><p>So first make an unordered list with few list items .</p><ul><li>Home</li><li>About</li><li>Contact Us</li></ul><p>Now let&#039;s style it using css</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/" class="more-link">Read more on How to make a simple navigation bar&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/">How to make a simple navigation bar</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/css-2-column-layout/' rel='bookmark' title='Permanent Link: Css 2 column layout'>Css 2 column layout</a> <small>Simple 2 column CSS layout This is a tutorial on...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/spry-tabbed-panels/' rel='bookmark' title='Permanent Link: Spry tabbed panels'>Spry tabbed panels</a> <small>In this tutorial i will talk about spry tabbed panels...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/face-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Face Attribute Example &#8211; HTML Syntax &#8211; Face Attribute Example'>Face Attribute Example &#8211; HTML Syntax &#8211; Face Attribute Example</a> <small>Face Attribute - HTML Syntax - Example...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/">How to make a simple navigation bar</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/css-2-column-layout/' rel='bookmark' title='Permanent Link: Css 2 column layout'>Css 2 column layout</a> <small>Simple 2 column CSS layout This is a tutorial on...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/spry-tabbed-panels/' rel='bookmark' title='Permanent Link: Spry tabbed panels'>Spry tabbed panels</a> <small>In this tutorial i will talk about spry tabbed panels...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/face-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Face Attribute Example &#8211; HTML Syntax &#8211; Face Attribute Example'>Face Attribute Example &#8211; HTML Syntax &#8211; Face Attribute Example</a> <small>Face Attribute - HTML Syntax - Example...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>In this tutorial . I will show you how you can make a simple horizontal navigation bar.</p><p>So first make an unordered list with few list items .</p><ul><li>Home</li><li>About</li><li>Contact Us</li></ul><p>Now let&#039;s style it using css</p><p>li{</p><p>display:inline;</p><p>padding:10px;</p><p>background-color:black;</p><p>color:white;</p><p>border:1 px solid white;</p><p>}</p><p>li:hover{</p><p>background-color:red;</p><p>}</p><p>Now run it and hover your mouse on it . See with so less code you have done wonders.</p><p> Now you can upgrade your navigation bar and make it more stylish . Here is the new cide with minimal changes</p><p>li{<br
/>  display:inline;</p><p>padding:15px;</p><p>background-color:black;</p><p>color:white;</p><p>}</p><p>li:hover{</p><p>background-color:red;<br
/> padding-bottom:5px;<br
/> font-family:&#034;Palatino Linotype&#034;, &#034;Book Antiqua&#034;, Palatino, serif</p><p>}<br
/>  </p><p>Here we have added more properties in css rule that is li:hover{}</p><p>When user hovers his/her mouse the bottom padding will decrease which will distinguish the selected navigation menu item from others. </p><p>Second thing that will change is the font .</p><p>Here is the screenshot:-</p><p><img
src="http://img217.imageshack.us/img217/3862/captureojn.jpg" alt="" /></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/">How to make a simple navigation bar</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/css-2-column-layout/' rel='bookmark' title='Permanent Link: Css 2 column layout'>Css 2 column layout</a> <small>Simple 2 column CSS layout This is a tutorial on...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/spry-tabbed-panels/' rel='bookmark' title='Permanent Link: Spry tabbed panels'>Spry tabbed panels</a> <small>In this tutorial i will talk about spry tabbed panels...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/face-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Face Attribute Example &#8211; HTML Syntax &#8211; Face Attribute Example'>Face Attribute Example &#8211; HTML Syntax &#8211; Face Attribute Example</a> <small>Face Attribute - HTML Syntax - Example...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/simple-navigation-bar/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>style your first letter using css</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/#comments</comments> <pubDate>Fri, 26 Nov 2010 11:10:28 +0000</pubDate> <dc:creator>asp.net videos</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2916</guid> <description><![CDATA[<p>Now you can style the first letter and first line the css .</p><p>For styling first letter</p><p><img
src="http://www.cssnewbie.com/wp-content/uploads/2008/02/dropcaps-and-damsels1.gif" alt="" /></p><p>CSS <span
class="color_h1">:first-letter</span> pseudo-element</p><p>&#60;html&#62;<br
/> &#60;head&#62;<br
/> &#60;style type=&#034;text/css&#034;&#62;<br
/> p:first-letter<br
/> {<br
/> color:#ff0000;<br
/> font-size:xx-large;<br
/> }<br
/> &#60;/style&#62;<br
/> &#60;/head&#62;</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/" class="more-link">Read more on style your first letter using css&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/">style your first letter using css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/' rel='bookmark' title='Permanent Link: how to style quotes using css'>how to style quotes using css</a> <small>source: http://www.cssnewbie.com/six-ways-style-blockquotes/ &#160; The blockquote XHTML tag is a fairly...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/css-advanced-selectors/' rel='bookmark' title='Permanent Link: css advanced selectors'>css advanced selectors</a> <small>Combinators The advanced combinators allow you to define styles that...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/style-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example'>Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example</a> <small>Style Attribute Example - HTML Syntax - HTML Style Example...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/">style your first letter using css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/' rel='bookmark' title='Permanent Link: how to style quotes using css'>how to style quotes using css</a> <small>source: http://www.cssnewbie.com/six-ways-style-blockquotes/ &nbsp; The blockquote XHTML tag is a fairly...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/css-advanced-selectors/' rel='bookmark' title='Permanent Link: css advanced selectors'>css advanced selectors</a> <small>Combinators The advanced combinators allow you to define styles that...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/style-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example'>Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example</a> <small>Style Attribute Example - HTML Syntax - HTML Style Example...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>Now you can style the first letter and first line the css .</p><p>For styling first letter</p><p><img
src="http://www.cssnewbie.com/wp-content/uploads/2008/02/dropcaps-and-damsels1.gif" alt="" /></p><p>CSS <span
class="color_h1">:first-letter</span> pseudo-element</p><p>&lt;html&gt;<br
/> &lt;head&gt;<br
/> &lt;style type=&#034;text/css&#034;&gt;<br
/> p:first-letter<br
/> {<br
/> color:#ff0000;<br
/> font-size:xx-large;<br
/> }<br
/> &lt;/style&gt;<br
/> &lt;/head&gt;</p><p>&lt;body&gt;<br
/> &lt;p&gt;This is a text.&lt;/p&gt;<br
/> &lt;/body&gt;<br
/> &lt;/html&gt;</p><p>When can this be useful?</p><p>This can be useful for styling the first letter of an parragraph .</p><p>CSS <span
class="color_h1">:first-line</span> pseudo-element</p><p>&lt;html&gt;<br
/> &lt;head&gt;<br
/> &lt;style type=&#034;text/css&#034;&gt;<br
/> p:first-line<br
/> {<br
/> color:#ff0000;<br
/> font-variant:small-caps;<br
/> }<br
/> &lt;/style&gt;<br
/> &lt;/head&gt;</p><p>&lt;body&gt;<br
/> &lt;p&gt;You can use the :first-line pseudo-element to add a special effect to the first line of a text.&lt;/p&gt;<br
/> &lt;/body&gt;<br
/> &lt;/html&gt;</p><p>When can this be useful?</p><p>Again this can be useful in the starting line of the parragraph or webpage.</p><p>Checkout this awesome tutorial on creating a book style effect using css</p><p><a
href="http://www.cssnewbie.com/book-style-chapter-intros/">http://www.cssnewbie.com/book-style-chapter-intros/</a></p><p>Find Out More &gt;&gt; <a
href="http://www.w3schools.com/CSS/pr_pseudo_first-letter.asp">http://www.w3schools.com/CSS/pr_pseudo_first-letter.asp</a></p><p><a
href="http://www.w3schools.com/Css/pr_pseudo_first-line.asp">http://www.w3schools.com/Css/pr_pseudo_first-line.asp</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/">style your first letter using css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/' rel='bookmark' title='Permanent Link: how to style quotes using css'>how to style quotes using css</a> <small>source: http://www.cssnewbie.com/six-ways-style-blockquotes/ &nbsp; The blockquote XHTML tag is a fairly...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/css-advanced-selectors/' rel='bookmark' title='Permanent Link: css advanced selectors'>css advanced selectors</a> <small>Combinators The advanced combinators allow you to define styles that...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/style-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example'>Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example</a> <small>Style Attribute Example - HTML Syntax - HTML Style Example...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/style-letter-css/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>how to style quotes using css</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/#comments</comments> <pubDate>Wed, 17 Nov 2010 09:23:54 +0000</pubDate> <dc:creator>asp.net videos</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2892</guid> <description><![CDATA[<p>source: <a
href="http://www.cssnewbie.com/six-ways-style-blockquotes/">http://www.cssnewbie.com/six-ways-style-blockquotes/</a></p><p>&#160;</p><p>The <strong>blockquote XHTML tag</strong> is a fairly useful (if somewhat underused) element. Semantically speaking, a blockquote should be used any time you&#8217;re quoting a longer piece of text from another source &#8211; another speaker, another website, whatever. It&#8217;s a way of setting the text apart, and showing that it came from some other source. Stylistically, you could accomplish all this with a special class on your paragraph tags&#8230; but that wouldn&#8217;t be as semantically useful, now, would it?</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/" class="more-link">Read more on how to style quotes using css&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/">how to style quotes using css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/style-html-content-area/' rel='bookmark' title='Permanent Link: How can you style your html content area'>How can you style your html content area</a> <small>If you are deciding to make your own website or...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/style-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example'>Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example</a> <small>Style Attribute Example - HTML Syntax - HTML Style Example...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/css-2-column-layout/' rel='bookmark' title='Permanent Link: Css 2 column layout'>Css 2 column layout</a> <small>Simple 2 column CSS layout This is a tutorial on...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/">how to style quotes using css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/style-html-content-area/' rel='bookmark' title='Permanent Link: How can you style your html content area'>How can you style your html content area</a> <small>If you are deciding to make your own website or...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/style-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example'>Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example</a> <small>Style Attribute Example - HTML Syntax - HTML Style Example...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/css-2-column-layout/' rel='bookmark' title='Permanent Link: Css 2 column layout'>Css 2 column layout</a> <small>Simple 2 column CSS layout This is a tutorial on...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>source: <a
href="http://www.cssnewbie.com/six-ways-style-blockquotes/">http://www.cssnewbie.com/six-ways-style-blockquotes/</a></p><p>&nbsp;</p><p>The <strong>blockquote XHTML tag</strong> is a fairly useful (if somewhat underused) element. Semantically speaking, a blockquote should be used any time you&rsquo;re quoting a longer piece of text from another source &ndash; another speaker, another website, whatever. It&rsquo;s a way of setting the text apart, and showing that it came from some other source. Stylistically, you could accomplish all this with a special class on your paragraph tags&hellip; but that wouldn&rsquo;t be as semantically useful, now, would it?</p><p>Blockquotes do have some styling by default. Most browsers will indent the text in a blockquote tag, which helps the user recognize that the text is different somehow. But who&rsquo;s to say that we need to stop there? Here are six different ways you could style your blockquotes using CSS.</p><h3>Color and Borders</h3><p>Applying a color change to the text and adding a border (along with some additional margins and padding) can really make the blockquote stand out, yet is subtle enough to retain a hint of sophistication.</p><p><a
class="no-border" href="http://www.cssnewbie.com/example/styling-blockquotes/"><img
class="alignnone size-full wp-image-175" alt="" src="http://www.cssnewbie.com/wp-content/uploads/2008/07/blockquote-1.gif" width="400" height="95" /></a></p><div
class="wp_syntax"><table><tbody><tr><td
class="line_numbers"><pre>
1
2
3
4
5
</pre></td><td
class="code"><pre class="css" style="font-family: monospace">
blockquote <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span> <span style="color: #933; font-weight: normal">3em</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">color</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #cc00cc; font-weight: normal">#999</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">border-left</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">2px</span> <span style="color: #993333; font-weight: normal">solid</span> <span style="color: #cc00cc; font-weight: normal">#999</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">padding-left</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span></pre></td></tr></tbody></table></div><h3>Background Colors</h3><p>If you&rsquo;d like something a little more obvious than just a text color change, you might considering altering your background color instead. This causes the blockquote to &ldquo;pop,&rdquo; making it immediately more noticeable. When applying background colors, be sure to account for any tags inside that might alter your margins (such as paragraph tags).</p><p><a
class="no-border" href="http://www.cssnewbie.com/example/styling-blockquotes/"><img
class="alignnone size-full wp-image-176" alt="" src="http://www.cssnewbie.com/wp-content/uploads/2008/07/blockquote-2.gif" width="400" height="105" /></a></p><div
class="wp_syntax"><table><tbody><tr><td
class="line_numbers"><pre>
1
2
3
4
5
6
</pre></td><td
class="code"><pre class="css" style="font-family: monospace">
blockquote <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span> <span style="color: #933; font-weight: normal">3em</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">padding</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">.5em</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">background-color</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #cc00cc; font-weight: normal">#f6ebc1</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span>
blockquote p <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #cc66cc; font-weight: normal">0</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span></pre></td></tr></tbody></table></div><h3>Background Colors and Borders</h3><p>Of course, we&rsquo;re not just limited to either-or, here. A background color in addition to a border in a complementary color is a nice effect, particularly on sites that are a little bit more &ldquo;glossy.&rdquo;</p><p><a
class="no-border" href="http://www.cssnewbie.com/example/styling-blockquotes/"><img
class="alignnone size-full wp-image-177" alt="" src="http://www.cssnewbie.com/wp-content/uploads/2008/07/blockquote-3.gif" width="400" height="183" /></a></p><div
class="wp_syntax"><table><tbody><tr><td
class="line_numbers"><pre>
1
2
3
4
5
6
7
</pre></td><td
class="code"><pre class="css" style="font-family: monospace">
blockquote <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span> <span style="color: #933; font-weight: normal">3em</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">padding</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">.5em</span> <span style="color: #933; font-weight: normal">1em</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">border-left</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">5px</span> <span style="color: #993333; font-weight: normal">solid</span> <span style="color: #cc00cc; font-weight: normal">#fce27c</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">background-color</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #cc00cc; font-weight: normal">#f6ebc1</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span>
blockquote p <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #cc66cc; font-weight: normal">0</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span></pre></td></tr></tbody></table></div><h3>Background Images</h3><p>We&rsquo;re also not just limited to colors! Many websites make use of background images in their blockquotes to help distinguish them from the surrounding text. The background image might appear below the text, or perhaps off to the side (like we&rsquo;ve done here) by way of a wider left padding.</p><p><a
class="no-border" href="http://www.cssnewbie.com/example/styling-blockquotes/"><img
class="alignnone size-full wp-image-178" alt="" src="http://www.cssnewbie.com/wp-content/uploads/2008/07/blockquote-4.gif" width="400" height="120" /></a></p><div
class="wp_syntax"><table><tbody><tr><td
class="line_numbers"><pre>
1
2
3
4
</pre></td><td
class="code"><pre class="css" style="font-family: monospace">
blockquote <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span> <span style="color: #933; font-weight: normal">20px</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">padding-left</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">50px</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">background</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #993333; font-weight: normal">transparent</span> <span style="color: #993333; font-weight: normal">url</span><span style="color: #00aa00; font-weight: normal">(</span><span style="font-style: italic; color: #ff0000; font-weight: normal">quote.gif</span><span style="color: #00aa00; font-weight: normal">)</span> <span style="color: #993333; font-weight: normal">no-repeat</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span></pre></td></tr></tbody></table></div><h3>Drop-Caps and Styled Lines</h3><p>Borrowing from my <a
href="http://www.cssnewbie.com/book-style-chapter-intros/"><font
color="#253c93" style="background-color: #d7f2ff">Book-Style Chapter Introductions</font></a> article, we can also distinguish our blockquotes by using drop-caps, stylized text, or (in this example&rsquo;s case) both at the same time. Here, we&rsquo;re making use of the first-letter and first-line pseudo-classes, so browser support may not be 100% in older browsers.</p><p><a
class="no-border" href="http://www.cssnewbie.com/example/styling-blockquotes/"><img
class="alignnone size-full wp-image-179" alt="" src="http://www.cssnewbie.com/wp-content/uploads/2008/07/blockquote-5.gif" width="400" height="95" /></a></p><div
class="wp_syntax"><table><tbody><tr><td
class="line_numbers"><pre>
1
2
3
4
5
6
7
8
9
10
11
12
</pre></td><td
class="code"><pre class="css" style="font-family: monospace">
blockquote <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span> <span style="color: #933; font-weight: normal">2em</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">border-left</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1px</span> <span style="color: #993333; font-weight: normal">dashed</span> <span style="color: #cc00cc; font-weight: normal">#999</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">padding-left</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span>
blockquote p<span style="color: #3333ff; font-weight: normal">:first-letter </span><span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">float</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #000000; font-weight: normal">left</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">.2em</span> <span style="color: #933; font-weight: normal">.3em</span> <span style="color: #933; font-weight: normal">.1em</span> <span style="color: #cc66cc; font-weight: normal">0</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">font-family</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #ff0000; font-weight: normal">&quot;Monotype Corsiva&quot;</span><span style="color: #00aa00; font-weight: normal">,</span> <span style="color: #ff0000; font-weight: normal">&quot;Apple Chancery&quot;</span><span style="color: #00aa00; font-weight: normal">,</span> <span style="color: #993333; font-weight: normal">fantasy</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">font-size</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal"><span style="color: #cc66cc; font-weight: normal">220</span>%</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">font-weight</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #993333; font-weight: normal">bold</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span>
blockquote p<span style="color: #3333ff; font-weight: normal">:first-line </span><span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">font-variant</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #993333; font-weight: normal">small-caps</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span></pre></td></tr></tbody></table></div><h3>Text and Color</h3><p>Or, if you&rsquo;d rather go the subtle-but-effective route, you might consider altering the color of the text in the blockquote, as well as the font style or variant. Also in this example, I&rsquo;m making use of the :before and :after pseudo-classes to insert content into my document &ndash; namely, the quotation marks at the beginning and end of the text. Of course, :before and :after aren&rsquo;t supported by all browsers, so&hellip; caveat emptor, and all that.</p><p><a
class="no-border" href="http://www.cssnewbie.com/example/styling-blockquotes/"><img
class="alignnone size-full wp-image-180" alt="" src="http://www.cssnewbie.com/wp-content/uploads/2008/07/blockquote-6.gif" width="400" height="113" /></a></p><div
class="wp_syntax"><table><tbody><tr><td
class="line_numbers"><pre>
1
2
3
4
5
6
7
8
9
</pre></td><td
class="code"><pre class="css" style="font-family: monospace">
blockquote <span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">color</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #cc00cc; font-weight: normal">#66a</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">font-weight</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #993333; font-weight: normal">bold</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">font-style</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #993333; font-weight: normal">italic</span><span style="color: #00aa00; font-weight: normal">;</span>
	<span style="color: #000000; font-weight: normal">margin</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #933; font-weight: normal">1em</span> <span style="color: #933; font-weight: normal">3em</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span>
blockquote p<span style="color: #3333ff; font-weight: normal">:before </span><span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">content</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #ff0000; font-weight: normal">'&quot;'</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span>
blockquote p<span style="color: #3333ff; font-weight: normal">:after </span><span style="color: #00aa00; font-weight: normal">{</span>
	<span style="color: #000000; font-weight: normal">content</span><span style="color: #00aa00; font-weight: normal">:</span> <span style="color: #ff0000; font-weight: normal">'&quot;'</span><span style="color: #00aa00; font-weight: normal">;</span> <span style="color: #00aa00; font-weight: normal">}</span></pre></td></tr></tbody></table></div><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/">how to style quotes using css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/style-html-content-area/' rel='bookmark' title='Permanent Link: How can you style your html content area'>How can you style your html content area</a> <small>If you are deciding to make your own website or...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/style-attribute-html-syntax/' rel='bookmark' title='Permanent Link: Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example'>Style Attribute Example &#8211; HTML Syntax &#8211; HTML Style Example</a> <small>Style Attribute Example - HTML Syntax - HTML Style Example...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/css-2-column-layout/' rel='bookmark' title='Permanent Link: Css 2 column layout'>Css 2 column layout</a> <small>Simple 2 column CSS layout This is a tutorial on...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/style-quotes-css/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>High quality professional templates in css</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/#comments</comments> <pubDate>Mon, 01 Nov 2010 10:12:59 +0000</pubDate> <dc:creator>asp.net videos</dc:creator> <category><![CDATA[Dreamweaver Tutorials]]></category> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2791</guid> <description><![CDATA[<p><strong>1. mCube</strong></p><p><img
src="http://devsnippets.com/img/templates/template01.jpg" alt="1" /></p><p>Download : http://www.templateworld.com/freetemplates/zero/track.php?id=58&#038;flag=2</p><p><strong>2. CoolBlue</strong><br
/> <img
src="http://devsnippets.com/img/templates/template02.jpg" alt="2" /></p><p>Download: http://www.styleshout.com/hits.php?type=tmp&#038;id=31&#038;url=templates/downloads/CoolBlue10.zip&#038;PHPSESSID=b2ac61b7d0372f1683d9d45a0bd737f8</p><p><strong>3. Jungleland</strong><br
/> <img
src="http://devsnippets.com/img/templates/template03.jpg" alt="3" /></p><p>Download : http://www.styleshout.com/hits.php?type=tmp&#038;id=30&#038;url=templates/downloads/Jungleland10.zip&#038;PHPSESSID=b2ac61b7d0372f1683d9d45a0bd737f8</p><p><strong>4. LawyerAttorney</strong><br
/> <img
src="http://devsnippets.com/img/templates/template04.jpg" alt="4" /></p><p>Download : http://www.styleshout.com/hits.php?type=tmp&#038;id=31&#038;url=templates/downloads/CoolBlue10.zip&#038;PHPSESSID=b2ac61b7d0372f1683d9d45a0bd737f8</p><p><strong>16. Minimal Design Template</strong></p><p><img
src="http://devsnippets.com/img/templates/template16.jpg" alt="5" /></p><p>Download : http://www.tuttoaster.com/code-up-an-awesome-minimal-web-design-from-psd-to-xhtml-css/</p><p><strong>iPhone App</strong></p><p><img
src="http://" alt="http://devsnippets.com/img/templates/template20.jpg" /></p><p>Download: http://www.csstemplatesfree.org/iphone-app.html</p><p>Also check this blog post here for more designs : http://www.hongkiat.com/blog/60-high-quality-free-web-templates-and-layouts/</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/" class="more-link">Read more on High quality professional templates in css&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/">High quality professional templates in css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/programming-concepts/web_promotion/photoshop-design-webpages/' rel='bookmark' title='Permanent Link: Using photoshop to design webpages'>Using photoshop to design webpages</a> <small>Here you can find best photoshop tutorials on how you...</small></li><li><a
href='http://idealprogrammer.com/net-languages/programming-languages-news/' rel='bookmark' title='Permanent Link: Programming Languages News'>Programming Languages News</a> <small> the best programming language for lego mindstorms, hands down...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/photoshop-programming/creating-wordpress-template-photoshop/' rel='bookmark' title='Permanent Link: creating wordpress template from photoshop'>creating wordpress template from photoshop</a> <small>If you want to create wordpress templates with your favourite...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/">High quality professional templates in css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/programming-concepts/web_promotion/photoshop-design-webpages/' rel='bookmark' title='Permanent Link: Using photoshop to design webpages'>Using photoshop to design webpages</a> <small>Here you can find best photoshop tutorials on how you...</small></li><li><a
href='http://idealprogrammer.com/net-languages/programming-languages-news/' rel='bookmark' title='Permanent Link: Programming Languages News'>Programming Languages News</a> <small> the best programming language for lego mindstorms, hands down...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/photoshop-programming/creating-wordpress-template-photoshop/' rel='bookmark' title='Permanent Link: creating wordpress template from photoshop'>creating wordpress template from photoshop</a> <small>If you want to create wordpress templates with your favourite...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><strong>1. mCube</strong></p><p><img
src="http://devsnippets.com/img/templates/template01.jpg" alt="1" /></p><p>Download : http://www.templateworld.com/freetemplates/zero/track.php?id=58&#038;flag=2</p><p><strong>2. CoolBlue</strong><br
/> <img
src="http://devsnippets.com/img/templates/template02.jpg" alt="2" /></p><p>Download: http://www.styleshout.com/hits.php?type=tmp&#038;id=31&#038;url=templates/downloads/CoolBlue10.zip&#038;PHPSESSID=b2ac61b7d0372f1683d9d45a0bd737f8</p><p><strong>3. Jungleland</strong><br
/> <img
src="http://devsnippets.com/img/templates/template03.jpg" alt="3" /></p><p>Download : http://www.styleshout.com/hits.php?type=tmp&#038;id=30&#038;url=templates/downloads/Jungleland10.zip&#038;PHPSESSID=b2ac61b7d0372f1683d9d45a0bd737f8</p><p><strong>4. LawyerAttorney</strong><br
/> <img
src="http://devsnippets.com/img/templates/template04.jpg" alt="4" /></p><p>Download : http://www.styleshout.com/hits.php?type=tmp&#038;id=31&#038;url=templates/downloads/CoolBlue10.zip&#038;PHPSESSID=b2ac61b7d0372f1683d9d45a0bd737f8</p><p><strong>16. Minimal Design Template</strong></p><p><img
src="http://devsnippets.com/img/templates/template16.jpg" alt="5" /></p><p>Download : http://www.tuttoaster.com/code-up-an-awesome-minimal-web-design-from-psd-to-xhtml-css/</p><p><strong>iPhone App</strong></p><p><img
src="http://" alt="http://devsnippets.com/img/templates/template20.jpg" /></p><p>Download: http://www.csstemplatesfree.org/iphone-app.html</p><p>Also check this blog post here for more designs : http://www.hongkiat.com/blog/60-high-quality-free-web-templates-and-layouts/</p><p>If you have any suggestions and comments use idealprogrammer fourms.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/">High quality professional templates in css</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/programming-concepts/web_promotion/photoshop-design-webpages/' rel='bookmark' title='Permanent Link: Using photoshop to design webpages'>Using photoshop to design webpages</a> <small>Here you can find best photoshop tutorials on how you...</small></li><li><a
href='http://idealprogrammer.com/net-languages/programming-languages-news/' rel='bookmark' title='Permanent Link: Programming Languages News'>Programming Languages News</a> <small> the best programming language for lego mindstorms, hands down...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/photoshop-programming/creating-wordpress-template-photoshop/' rel='bookmark' title='Permanent Link: creating wordpress template from photoshop'>creating wordpress template from photoshop</a> <small>If you want to create wordpress templates with your favourite...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/high-quality-professional-templates-css/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Learn css positioning with examples</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/#comments</comments> <pubDate>Sun, 31 Oct 2010 09:36:29 +0000</pubDate> <dc:creator>asp.net videos</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2767</guid> <description><![CDATA[<p>If you want to learn css positioning with live examples of div&#039;s which are begin positioned you can use the following website which are recommended for you .</p><p><strong>http://www.w3schools.com/css/css_positioning.asp</strong></p><p>and</p><p><strong>http://www.barelyfitz.com/screencast/html-training/css/positioning/</strong></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/" class="more-link">Read more on Learn css positioning with examples&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/">Learn css positioning with examples</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/fixed-positioning-css/' rel='bookmark' title='Permanent Link: what is fixed positioning in css ?'>what is fixed positioning in css ?</a> <small>Fixed positioning in css is very easy to learn and...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/' rel='bookmark' title='Permanent Link: css image switcher'>css image switcher</a> <small>Roll over a link, watch the image above change. That’s...</small></li><li><a
href='http://idealprogrammer.com/videos/introduction-to-ruby-on-rails-best-rated-free-video-tutorials/' rel='bookmark' title='Permanent Link: Introduction to Ruby on Rails &#8211; Best Rated Free Video Tutorials'>Introduction to Ruby on Rails &#8211; Best Rated Free Video Tutorials</a> <small>Here are some of the best rated free video tutorials...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/">Learn css positioning with examples</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/fixed-positioning-css/' rel='bookmark' title='Permanent Link: what is fixed positioning in css ?'>what is fixed positioning in css ?</a> <small>Fixed positioning in css is very easy to learn and...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/' rel='bookmark' title='Permanent Link: css image switcher'>css image switcher</a> <small>Roll over a link, watch the image above change. That’s...</small></li><li><a
href='http://idealprogrammer.com/videos/introduction-to-ruby-on-rails-best-rated-free-video-tutorials/' rel='bookmark' title='Permanent Link: Introduction to Ruby on Rails &#8211; Best Rated Free Video Tutorials'>Introduction to Ruby on Rails &#8211; Best Rated Free Video Tutorials</a> <small>Here are some of the best rated free video tutorials...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>If you want to learn css positioning with live examples of div&#039;s which are begin positioned you can use the following website which are recommended for you .</p><p><strong>http://www.w3schools.com/css/css_positioning.asp</strong></p><p>and</p><p><strong>http://www.barelyfitz.com/screencast/html-training/css/positioning/</strong></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/">Learn css positioning with examples</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/fixed-positioning-css/' rel='bookmark' title='Permanent Link: what is fixed positioning in css ?'>what is fixed positioning in css ?</a> <small>Fixed positioning in css is very easy to learn and...</small></li><li><a
href='http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/' rel='bookmark' title='Permanent Link: css image switcher'>css image switcher</a> <small>Roll over a link, watch the image above change. That’s...</small></li><li><a
href='http://idealprogrammer.com/videos/introduction-to-ruby-on-rails-best-rated-free-video-tutorials/' rel='bookmark' title='Permanent Link: Introduction to Ruby on Rails &#8211; Best Rated Free Video Tutorials'>Introduction to Ruby on Rails &#8211; Best Rated Free Video Tutorials</a> <small>Here are some of the best rated free video tutorials...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/learn-css-positioning-examples/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free css tutorial series</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/#comments</comments> <pubDate>Sun, 31 Oct 2010 09:30:10 +0000</pubDate> <dc:creator>asp.net videos</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2764</guid> <description><![CDATA[<p>If you want to learn best stuff that you can do with css you can use this awesome website :-</p><p>http://css-tricks.com/video-screencasts/</p><p>Here is a short css video series too :</p><p>http://www.2createawebsite.com/design/css-tutorial.html</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/" class="more-link">Read more on Free css tutorial series&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/">Free css tutorial series</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/free-dreamweaver-tutorial-series/' rel='bookmark' title='Permanent Link: Free Dreamweaver Tutorial series'>Free Dreamweaver Tutorial series</a> <small>Do you want free dreamweaver tutorials Well now you can...</small></li><li><a
href='http://idealprogrammer.com/videos/silverlight-3-four-hours-of-free-video-tutorials-by-microsoft-experts/' rel='bookmark' title='Permanent Link: Silverlight 3 Tutorial &#8211; (Four Hours of Free Videos by Microsoft Experts)'>Silverlight 3 Tutorial &#8211; (Four Hours of Free Videos by Microsoft Experts)</a> <small>Interested in Silverlight 3? Here you will find four hours...</small></li><li><a
href='http://idealprogrammer.com/net-languages/visual-basic-vbnet/free-visual-studio-2010-ebook/' rel='bookmark' title='Permanent Link: Free visual studio 2010 ebook'>Free visual studio 2010 ebook</a> <small>Microsoft Press has released a free book titled Moving To...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/">Free css tutorial series</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/free-dreamweaver-tutorial-series/' rel='bookmark' title='Permanent Link: Free Dreamweaver Tutorial series'>Free Dreamweaver Tutorial series</a> <small>Do you want free dreamweaver tutorials Well now you can...</small></li><li><a
href='http://idealprogrammer.com/videos/silverlight-3-four-hours-of-free-video-tutorials-by-microsoft-experts/' rel='bookmark' title='Permanent Link: Silverlight 3 Tutorial &#8211; (Four Hours of Free Videos by Microsoft Experts)'>Silverlight 3 Tutorial &#8211; (Four Hours of Free Videos by Microsoft Experts)</a> <small>Interested in Silverlight 3? Here you will find four hours...</small></li><li><a
href='http://idealprogrammer.com/net-languages/visual-basic-vbnet/free-visual-studio-2010-ebook/' rel='bookmark' title='Permanent Link: Free visual studio 2010 ebook'>Free visual studio 2010 ebook</a> <small>Microsoft Press has released a free book titled Moving To...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p>If you want to learn best stuff that you can do with css you can use this awesome website :-</p><p>http://css-tricks.com/video-screencasts/</p><p>Here is a short css video series too :</p><p>http://www.2createawebsite.com/design/css-tutorial.html</p><p>If you have any comments and suggestions on this article please use idealprogrammer forums</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/">Free css tutorial series</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/free-dreamweaver-tutorial-series/' rel='bookmark' title='Permanent Link: Free Dreamweaver Tutorial series'>Free Dreamweaver Tutorial series</a> <small>Do you want free dreamweaver tutorials Well now you can...</small></li><li><a
href='http://idealprogrammer.com/videos/silverlight-3-four-hours-of-free-video-tutorials-by-microsoft-experts/' rel='bookmark' title='Permanent Link: Silverlight 3 Tutorial &#8211; (Four Hours of Free Videos by Microsoft Experts)'>Silverlight 3 Tutorial &#8211; (Four Hours of Free Videos by Microsoft Experts)</a> <small>Interested in Silverlight 3? Here you will find four hours...</small></li><li><a
href='http://idealprogrammer.com/net-languages/visual-basic-vbnet/free-visual-studio-2010-ebook/' rel='bookmark' title='Permanent Link: Free visual studio 2010 ebook'>Free visual studio 2010 ebook</a> <small>Microsoft Press has released a free book titled Moving To...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/free-css-tutorial-series/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>css image switcher</title><link>http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/</link> <comments>http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/#comments</comments> <pubDate>Sun, 31 Oct 2010 09:24:50 +0000</pubDate> <dc:creator>asp.net videos</dc:creator> <category><![CDATA[HTML / CSS]]></category><guid
isPermaLink="false">http://idealprogrammer.com/?p=2762</guid> <description><![CDATA[<p><strong>Roll over a link, watch the image above change. That’s what we build in this screencast, only we don’t use any JavaScript to do it. The trick is some simple z-index switching on hover and a bit of absolute positioning.</strong><br
/> <em><br
/> Running Time: 12:20</em></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/" class="more-link">Read more on css image switcher&#8230;</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/">css image switcher</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/fixed-positioning-css/' rel='bookmark' title='Permanent Link: what is fixed positioning in css ?'>what is fixed positioning in css ?</a> <small>Fixed positioning in css is very easy to learn and...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/absolute-relative-path-beginners/' rel='bookmark' title='Permanent Link: Absolute and Relative path for beginners'>Absolute and Relative path for beginners</a> <small>When you&#39;re creating links to documents and images on the...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/free-dreamweaver-tutorial-series/' rel='bookmark' title='Permanent Link: Free Dreamweaver Tutorial series'>Free Dreamweaver Tutorial series</a> <small>Do you want free dreamweaver tutorials Well now you can...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/">css image switcher</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/fixed-positioning-css/' rel='bookmark' title='Permanent Link: what is fixed positioning in css ?'>what is fixed positioning in css ?</a> <small>Fixed positioning in css is very easy to learn and...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/absolute-relative-path-beginners/' rel='bookmark' title='Permanent Link: Absolute and Relative path for beginners'>Absolute and Relative path for beginners</a> <small>When you&#39;re creating links to documents and images on the...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/free-dreamweaver-tutorial-series/' rel='bookmark' title='Permanent Link: Free Dreamweaver Tutorial series'>Free Dreamweaver Tutorial series</a> <small>Do you want free dreamweaver tutorials Well now you can...</small></li></ol>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description> <content:encoded><![CDATA[<p><strong>Roll over a link, watch the image above change. That’s what we build in this screencast, only we don’t use any JavaScript to do it. The trick is some simple z-index switching on hover and a bit of absolute positioning.</strong><br
/> <em><br
/> Running Time: 12:20</em></p><p><a
href="http://vnfiles.ign.com/ects/css-tricks/VideoCast-82.m4v">Direct Download: High Quality, Quicktime .M4V Format (AppleTV Ready)</a></p><p><a
href="http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/">css image switcher</a> is a post from: <a
href="http://idealprogrammer.com">IdealProgrammer.com</a></p><p>Related posts:<ol><li><a
href='http://idealprogrammer.com/other-languages/html/fixed-positioning-css/' rel='bookmark' title='Permanent Link: what is fixed positioning in css ?'>what is fixed positioning in css ?</a> <small>Fixed positioning in css is very easy to learn and...</small></li><li><a
href='http://idealprogrammer.com/other-languages/html/absolute-relative-path-beginners/' rel='bookmark' title='Permanent Link: Absolute and Relative path for beginners'>Absolute and Relative path for beginners</a> <small>When you&#39;re creating links to documents and images on the...</small></li><li><a
href='http://idealprogrammer.com/development_tools/idealprogrammer-html-css-tutorials/learn-dreamweaver-free/free-dreamweaver-tutorial-series/' rel='bookmark' title='Permanent Link: Free Dreamweaver Tutorial series'>Free Dreamweaver Tutorial series</a> <small>Do you want free dreamweaver tutorials Well now you can...</small></li></ol></p><p>Related posts brought to you by <a
href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded> <wfw:commentRss>http://idealprogrammer.com/net-languages/code-samples/html-css/css-image-switcher/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching 134/257 queries in 0.132 seconds using disk: basic
Object Caching 5314/5466 objects using disk: basic

Served from: idealprogrammer.com @ 2012-05-21 09:37:33 -->
