<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-3704806551879999560</atom:id><lastBuildDate>Sun, 01 Sep 2024 14:44:07 +0000</lastBuildDate><title>Cascading Style Sheets (CSS)</title><description>Basic knowledge  of CSS for Web site Design</description><link>http://css-basic.blogspot.com/</link><managingEditor>noreply@blogger.com (sandy)</managingEditor><generator>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:summary>Basic knowledge of CSS for Web site Design</itunes:summary><itunes:subtitle>Basic knowledge of CSS for Web site Design</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-944083010759962374</guid><pubDate>Tue, 05 May 2009 06:51:00 +0000</pubDate><atom:updated>2009-05-04T23:58:19.760-07:00</atom:updated><title>css border style</title><description>You can put border around text, paragraphs, images, tables with different styles according to match you page color combinations. You will get an idea of all the different looks you can create&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#cc0000;"&gt;Border style :&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;span style="color:#ff9900;"&gt;&amp;lt; style type="text/css"&amp;gt;&lt;br /&gt;.dotted {border-style: dotted;}&lt;br /&gt;.dashed {border-style: dashed;}&lt;br /&gt;.solid {border-style: solid;}&lt;br /&gt;.double {border-style: double;}&lt;br /&gt;.groove {border-style: groove;}&lt;br /&gt;.ridge {border-style: ridge;}&lt;br /&gt;.inset {border-style: inset;}&lt;br /&gt;.outset {border-style: outset;}&lt;br /&gt;&amp;lt; /style&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;Result :&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: dotted; BORDER-TOP: dotted; BORDER-LEFT: dotted; BORDER-BOTTOM: dotted"&gt;dotted style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: dashed; BORDER-TOP: dashed; BORDER-LEFT: dashed; BORDER-BOTTOM: dashed"&gt;dashed style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: solid; BORDER-TOP: solid; BORDER-LEFT: solid; BORDER-BOTTOM: solid"&gt;solid style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: double; BORDER-TOP: double; BORDER-LEFT: double; BORDER-BOTTOM: double"&gt;double style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: groove; BORDER-TOP: groove; BORDER-LEFT: groove; BORDER-BOTTOM: groove"&gt;groove style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: ridge; BORDER-TOP: ridge; BORDER-LEFT: ridge; BORDER-BOTTOM: ridge"&gt;ridge style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: inset; BORDER-TOP: inset; BORDER-LEFT: inset; BORDER-BOTTOM: inset"&gt;inset style border &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="BORDER-RIGHT: outset; BORDER-TOP: outset; BORDER-LEFT: outset; BORDER-BOTTOM: outset"&gt;outset style border &lt;/span&gt;</description><link>http://css-basic.blogspot.com/2009/05/css-border-style.html</link><author>noreply@blogger.com (sandy)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-905449677666270224</guid><pubDate>Mon, 27 Apr 2009 10:15:00 +0000</pubDate><atom:updated>2009-04-27T03:25:04.366-07:00</atom:updated><title>How to style link</title><description>&lt;span style="font-size:130%;"&gt;I will explain you how to style text link with the help of example. For this I have created one link and declare link Css properties. The default link is red and after cursor over the link text, the link will appear blue.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;link, visited, hover, and active these are four selectors.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt; style type="text/css"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:link {color:# c70505; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:visited {color:# 0caa0c; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:hover {color:# 406ee2; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;a:active {color:#ccccc; }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&amp;lt; /style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;In the above code link(&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:link&lt;/span&gt;&lt;span style="font-size:130%;"&gt;)  defines the properties for an unvisited link. VISITED (&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:visited&lt;/span&gt;&lt;span style="font-size:130%;"&gt;) defines the properties for a visitied link. ACTIVE(&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:active&lt;/span&gt;&lt;span style="font-size:130%;"&gt;) defines the properties of a currently active link. HOVER (&lt;/span&gt;&lt;span style="color: rgb(255, 102, 102);font-size:130%;" &gt;a:hover&lt;/span&gt;&lt;span style="font-size:130%;"&gt;)defines the properties when a mouse is over a link which is blue here.&lt;br /&gt;&lt;br /&gt;You can specify a different BACKGROUND color, cursors, font …etc for link&lt;/span&gt;</description><link>http://css-basic.blogspot.com/2009/04/how-to-style-link.html</link><author>noreply@blogger.com (sandy)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-199097272304787071</guid><pubDate>Tue, 21 Apr 2009 05:09:00 +0000</pubDate><atom:updated>2009-04-20T22:17:35.205-07:00</atom:updated><title>CSS validation</title><description>&lt;span style="font-size:130%;"&gt;CSS validation means examination that you are applying a correct technique in your CSS code. Validation tool helps you to detect all kind of errors that possibly you couldn’t be identified during the developing process. Validation tools (services) are freely available. You can use online services or download software use for your local work.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;you can get free validation for your style sheets from the&lt;br /&gt;&lt;a href="http://jigsaw.w3.org/css-validator/" target="_blank"&gt;http://jigsaw.w3.org/css-validator/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;Validation is mostly use for to find the error in your CSS code. Browsers are becoming more standards compliant, and it is becoming increasingly necessary and important to write valid css. If you want your site listed on search engines then make sure that you have good Css.&lt;/span&gt;</description><link>http://css-basic.blogspot.com/2009/04/css-validation.html</link><author>noreply@blogger.com (sandy)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-3704806551879999560.post-1599181325280705810</guid><pubDate>Fri, 17 Apr 2009 10:17:00 +0000</pubDate><atom:updated>2009-05-20T23:10:39.332-07:00</atom:updated><title>Basic understanding of CSS (Cascading Style Sheet)</title><description>&lt;div&gt;Web design is today’s one of the fastest growing career fields, so it is the perfect time to become a Web designer. As a web designer you should have knowledge of Graphics designing, HTML and Css (Cascading Style Sheets). In this blog I am sharing some basic knowledge of CSS that will help you in your every day web design and development tasks. Before learn CSS you should have knowledge of HTML.&lt;br /&gt;&lt;br /&gt;May be you already heard about CSS. CSS stands for the &lt;a href="http://css-basic.blogspot.com/"&gt;&lt;strong&gt;&lt;span style="color:#990000;"&gt;Cascading Style Sheet&lt;/span&gt;&lt;/strong&gt;.&lt;/a&gt; Css is a collection of formatting rules that control the appearance of content in a web page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;HTML is used to structure content. CSS is used for formatting structured content.&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:Arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;( &lt;span style="font-size:85%;"&gt;In simple word css allow you to change style of fonts, colors, background, borders, text formatting, link etc.)&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;There are three ways you can apply CSS to an HTML document&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;Inline &lt;/li&gt;&lt;br /&gt;&lt;li&gt;Embedded &lt;/li&gt;&lt;br /&gt;&lt;li&gt;External Style Sheets&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;Inline Styles:&lt;/span&gt;&lt;/strong&gt; Inline styles are styles that are written directly in the tag on the HTML document. Inline styles affect only the tag they are applied to.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;&amp;lt; a href=" " style="color: red;" &amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;Embedded Styles:&lt;/span&gt;&lt;/strong&gt; Embedded styles are styles that are embedded in the head of the HTML document. Embedded styles affect only the tags on the page they are embedded in. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;&amp;lt; style type="text/css"&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;p {border-left: 1px dotted gray;}&amp;lt; /style&amp;gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;If any changes you want to make to one page, will have to be made to all. This method can be good if you need to style only one page.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;&lt;span style="color:#ff6600;"&gt;External Styles:&lt;/span&gt;&lt;/strong&gt; External styles are styles that are written in a separate document and then attached to various HTML documents. External style sheets can affect any page they are attached to. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#cc0000;"&gt;&lt;strong&gt;&amp;lt; link rel="stylesheet" type="text/css" href="styles.css" /&amp;gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Can control styles for multiple documents at once.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Easier Maintenance &lt;/li&gt;&lt;br /&gt;&lt;li&gt;Reduced File Size &lt;/li&gt;&lt;br /&gt;&lt;li&gt;Improved Flexibility&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://feeds2.feedburner.com/CascadingStyleSheetscss" type="application/rss+xml" rel="alternate"&gt;&lt;img style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: middle; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" alt="" src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" /&gt;&lt;/a&gt; &lt;a href="http://feeds2.feedburner.com/CascadingStyleSheetscss" type="application/rss+xml" rel="alternate"&gt;Subscribe in a reader&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><link>http://css-basic.blogspot.com/2009/04/css-basic_17.html</link><author>noreply@blogger.com (sandy)</author><thr:total>1</thr:total></item></channel></rss>