You need to add a style block within the head like:
<head>
...
<style type="text/css">
</style>
...
</head>
Then, to your style block you can add all kinds of formatting options. Your examples would be like:
<style type="text/css">
body{
background-color:XXXX;
color:RGBX;
}
</style>
After you've added the css, you can remove the attributes from your body tag, so it will simply be:
<body>
You can underline, double-space, bold, whatever you'd like. Do you want to apply those style to the whole page, or specific elements?
Main Topics
Browse All Topics





by: Round_ButtePosted on 2009-08-16 at 21:04:23ID: 25111566
Ok thank you! I really didn't know where to post it John