This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Monday, 22 April 2013

CSS ID & Class

CSS ID & Class:   CSS ID The ID attribute of a document language allows authors to assign an identifier to one element instance in the document tree. CSS ID selectors match an element instance based on its            identifier.  A CSS ID selector contains a "#" immediately followed by the ID value, which must be an identifier.  How to use         <p id="bordered">                  Then,          #bordered          {                 ...

CSS Syntax

CSS Syntax: Syntax selector { property: value } Description The selector is normally the HTML element you want to style. Each declaration consists of a property and a value. The property is the style attribute you want to change. Each property has a value. Example h1, h2, h3, h4, h5, h6 {   color: #009900;   font-family: Georgia, sans-serif; ...

HOW To Insert CSS

HOW To Insert CSS There Are Three ways to insert Stylesheet 1)External Stylesheet 2)Internal Stylesheet 3)Inline Stylesheet 1)External Stylesheet External stylesheet are the best way to put CSS styles on your web pages. Once you've gone beyond the basics of creating CSS styles, you'll want to be able to use the same styles across multiple pages on your site.  External style sheets make this easy to do. Authors may separate style sheets from HTML documents. This offers several benefits: Authors and Web site managers may share style sheets across a number of documents (and sites). Authors may change the style sheet without requiring modifications to the document. User agents may load style sheets selectively (based on media descriptions). How...

CSS Introduction

CSS Introduction What is CSS? CSS stands for Cascading Style Sheets. CSS is an extension to basic HTML that allows you to style your web pages. External Style Sheets can save a lot of work. External Style Sheets are stored in CSS files. Use Of CSS Use of CSS is the recommended way of defining how HTML pages are displayed.  You should use HTML to define the basic structure (using elements such as <h1>, <p>, <li>, etc.) and CSS to define how these elements should appear (e.g. heading should be in bold Arial font, paragraphs should be indented, etc.). Applied the style       <style type="text/css">       .myNewStyle...

Pages 212 »
Twitter Delicious Facebook Digg Stumbleupon Favorites More