CSS Tutorial

We can use the CSS language to style a document of HTML.

This language describes how the elements of  Hyper Text Markup Language should be displayed on the webpage. 

At Learn Easy Code you can learn CSS from scratch to the advanced level.

Example

body {
     background-color: yellow;
}

h1 {
     color: red;
     text-align: center;
}

p {
     font-size: 22px;
}