CSS Tutorial

We can use the CSS to style a Web page.

What is CSS?

Why we should use CSS?

We can define the professional styles for our web pages, including the layout, variations of multiple displays on different devices, screen resolutions, and design. Therefore we should use CSS for our Web Pages.

Example

body {
     background-color: green;
}

h2 {
     color: white;
     text-align: center;
}

p {
     font-size: 20px;
     color: #ffffff;
}