CSS Introduction

What is CSS?

  • CSS stands for “Cascading Style Sheet”.
  • Cascading Style Sheets (CSS) is a language used to specify design & formatting of web pages. In other words, CSS is used to control the style of a web document.
  • CSS works with HTML tags.

Learning CSS is so much fun. You can apply different CSS properties to change the webpage formatting.

Here is an example of CSS Code:

body {
    background-color: blue;
}
 
p {
    font-family: "Times New Roman";
    font-size: 22px;
}

Examples of Detail
Here, you can see Html tags like body and p. Then we have applied different CSS formatting to those tags.


Congratulations! Chapter Finished. Learn more about the similar topics:
Exercises & Assignments
No Content Found.
Interview Questions & Answers
No Content Found.