CSS Example
<html>
<head>...
<style>
body {
background-color: yellow;
}
h1 {
text-align: center;
font-family: impact;
font-size: 36pt;
color: red;
}
h2 {
font-family: arial;
font-size: 24pt;
color: blue;
}
p {
font-family: verdana;
text-indent: 50px;
}
</style>
</head>
<body>...
</body>
</html>