About CSS
What is CSS? CSS stands for C ascading S tyle S heets CSS describes how HTML elements are to be displayed on screen, paper, or in other media CSS saves a lot of work . It can control the layout of multiple web pages all at once External stylesheets are stored in CSS files "Css allows you to create rules that specify how the content of an element should appear. For example, you can specify that the background of the page is mint-cream,all the paragraph appear in Gray using the Arial typeface and headings should be in a blue and italic." Css file:- where p = Selector (which indicate the rule to applies.the same rule apply more than one element if you separate the element name with commas.) { color:gray; font-family:arial; } Declartions (Indicate how the element referred to in the selector should be styled. Declaration a...