Seo Master present to you:
CASCADING STYLE SHEET (CSS) TUTORIALSCascading: It means that multiple styles can overlap in order to specify a range of style from a whole website to a unique element. Style: It deals especially with the presentation e.g. color, font. Sheet: CSS is a file separate from the HTML file which is linked through its head tag. I recommend every one to learn for free >> How to create a website Uses of CSS:i. It allows much richer document appearance than HTML. ii. Reduces work load by centralizing commands for visual appearances instead of scattered throughout the HTML document. iii. Use same style on multiple pages. iv. Reduces page download size. Basic Syntax of CSSSelector{property: value} e.g. P{color:red}
Syntax For Multiple PropertySelector{property: value; property: value; property: value} e.g. P{color:red; font-size:12px} Note: If the value is multiple words then put codes around the value e.g. P{font-family:"Sans Serif"} |
Labels: beginner css tutorial, css tutorial, css tutorials, learn css