Adding CSS
in the <head>
<style type="text/css">
.class {
color: #ddd;
background-image: url(’/imagesl/background.gif’);
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #fff;
background-position:center;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 0.8em;
line-height:1.4em;
text-align: center;
}
</style>
or do this
<style type="text/css">
@import url(css/styles.css); /* @import as to be the first titem */
</style>
