CSS Introduction

What is CSS?

CSS stands for Cascading Style Sheets, this language is used to style and beautify website documents and pages, CSS explains how HTML elements are to be displayed on screen or other media.


What is CSS full form?

CSS full form is Cascading Style Sheets.


What is Cascading Style Sheets?

  • Cascading Style Sheets (CSS) is a language used to describe the presentation of a document written in HTML or XML.
  • CSS describes how elements should be presented on screen, on paper, in speech, or in other media.
  • CSS saves a lot of work, it can control the layout of multiple web pages at the same time.
  • It can be written both internally (in the form of style tags) and external style sheets (in CSS file format).

Why Use CSS?

CSS is used to define the style of web pages, such as design, font color, background color, layout, layout, and variation of display size depending on different device and screen size. Is used.


CSS Example

CSS Template code

body {
  background-color: lightblue;
}


h1 {
  color: red;
  margin-left: 20px;
}


p {
  text-align: center;
  font-size: 15px;
}

Here are some CSS Templates to understand more about CSS.