CSS is a stylesheet language that describes the presentation of an HTML (or XML) document.
CSS describes how elements must be rendered on screen, on paper, or in other media.
This tutorial will teach you CSS from basic to advanced.
TThis CSS tutorial contains hundreds of CSS examples.
With our online editor, you can edit the CSS, and click on a button to view the result.
body
{
background-color:#111;
}
p
{
font-family:"Times New Roman";
font-size:20px;
}
h1
{
color:green;
text-align:center;
}
Click on the "Try it Yourself" button to see how it works.