Wednesday, 26 November 2014

CSS


  • CSS stands for Cascading Style Sheet
  • CSS is used for changing the look and/or the layout of a HTML document
  • CSS was adding in HTML 4.0
  • CSS can be done in the HTML document or in an external file

 CSS Example

Body
{
  background-colour: #FFFFFF;
h1
{
   color: orange;
   text-align: center;
}

No comments:

Post a Comment