<html>
<head>
<title>Cascading Style Sheets</title>
<style type="text/css">
body {
background-image: 'url(ldbike1.gif)';
background-color: 'yellow';
}
h1 {
color: 'blue';
font-variant: 'small-caps';
text-align: 'center';
font-size: '2em'
}
h2 {
color: 'blue';
margin-left: '1em';
font-size: '1.5em';
font-style: 'oblique'
}
h3 {
color: 'blue';
margin-left: '2em';
font-size: '1.3em';
}
p.prime {
color: 'black';
margin-left: '2em';
font-size: '1em';
text-indent: '2em'
}
p.second {
color: 'navy';
margin-left: '4em';
font-size: '1em';
}
p.tertiary {
color: 'navy';
margin-left: '6em';
font-size: '1em';
}
em {
font-size: '1.2em'
}
</style>
</head>
</html>