CSS Tutorial

CSS stands for Cascading Style Sheets. It’s a language used for describing the presentation of a document written in HTML, including the layout, colors, fonts, and other visual aspects of a webpage.

Example of CSS Code

body {
    background-color: dimgrey;
}

Above example code will color the HTML body with gray.

Here

  • body : It’s a selector

  • background-color : Property

  • dimgrey : Value of the property.