CSS TUTORIALS FOR BEGINNERS:
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.
CSS Example
body {
background-color: #FFF;
}
h1 {
color: orange;
text-align: center;
}
p {
font-family: "Arial";
font-size: 24px;
}