CSS stands for Cascading Style Sheets.CSS is mainly used to present the layout of webpage.Most of facilities which are not available in html are present here.specially colors,fonts and layouts are establish in css sheets.CSS should be saved with .css extension.CSS specifications are maintained by W3C. CSS can be added in 3 ways. i)Inline - By using the style attribute in HTML elements This method is used to add style to the specific tag Eg: <html> <body> <h1 style="color:blue;">hello</h1> </body> ...


Comments
Post a Comment