Best thing I had learned so far. I was a little bit skeptic at the beginning, but I learn almost all I needed in a couple of hours
What's to share? Should we share our views on HTML, too? How about the air we breathe? The water we drink? What's the diff?
* CSS stands for Cascading Style Sheets * Styles define how to display HTML elements * Styles were added to HTML 4.0 to solve a problem * External Style Sheets can save a lot of work * External Style Sheets are stored in CSS files CSS Saves a Lot of Work! It defines HOW HTML elements are to be displayed. Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in a Web site, just by editing one single file!
What is CSS? * CSS stands for Cascading Style Sheets * External Style Sheets can save a lot of work * CSS defines HOW HTML elements are to be displayed. There are three ways of inserting a style sheet: * External style sheet * Internal style sheet * Inline style Styles are normally saved in external .css files. External style sheets enable you to change the appearance and layout of all the pages in a Web site, just by editing one single file! THE CODE FOLLOWS AS <head> <link rel="stylesheet" type="text/css" href="mystyle.css" /> </head>