Quote:
Originally Posted by justFred
though if you need more than just the styling you'll want to put the style information in the header such as:
<head>
<style type="text/css">
body
{
background-image: url('i don't want this image to tile.jpg');
background-repeat: no-repeat
font-family: some font
color: some color
whatever: other CSS
}
</style>
</head>
and your code will be more readable and save you time.
|
Good idea to use css however here it is corrected.
<style type="text/css">
body
{
background-image: url('i don't want this image to tile.jpg');
background-repeat: no-repeat;
font-family: some font;
color: some color;
whatever: other CSS;
}
</style>
You need the ";" after each style classification.