Video_Tycoon
11-02-2006, 12:50 AM
Okay, I'm new to HTML, so I hope you can help me...
I need a code for a background colour. (Put ###### where the HTML notation goes for the colour) Also, please tell me where I can put the body.
bourdelson
11-02-2006, 01:55 AM
It looks a little like this:
background-color:#######; [there has to be a # before the hexadecimal color]
http://www.lissaexplains.com/css.shtml
And what do you mean by where you can put the body? You mean like this?
<html>
<head>
<title>Page title</title>
<style type="text/css" rel="stylesheet">
CSS goes here
</style>
</head>
<body>
Stuff that goes in the body goes here
</body>
</html>
Have you tried looking over Lissa's HTML tutorials? They'll prove to be a great help to you when first starting out. :)
http://www.lissaexplains.com/basics.shtml
http://www.lissaexplains.com/html.shtml
Video_Tycoon
11-02-2006, 02:33 AM
Oh...kay...where can I post the Hex code for the background though, other than that you helped me perfectly!
bourdelson
11-02-2006, 02:35 AM
In that coding, between the two <style> tags, put this:
body {
background-color:#######;
}
And that should do it. :)
Video_Tycoon
11-03-2006, 01:34 AM
Thank you both, so much!:)
bourdelson
11-03-2006, 04:21 AM
Both of us say you're welcome. ;)