CSS
What is CSS?

What is CSS?
- CSS stands for Cascading Style Sheets
- CSS describes how HTML elements are to be displayed on screen, paper, or in other media
- It can control the layout of multiple web pages all at once
- External stylesheets are stored in CSS files
Why Use CSS?
CSS is used to define styles for your web pages.
body {
background-color: white;
}
h2 {
color: blue;
text-align: center;
}
p {
font-family: roboto;
font-size: 25px;
}
If you don’t know what HTML is, we suggest that you read our HTML Tutorial.