aaronoafc
02-10-2012, 04:14 PM
Does anybody know why the background on this HTML file is not turning red? I have linked it to my CSS file and set it to turn the "body" red. I want the entire page background to be red.
HTML name - index.html
<!doctype html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
</body>
</html>
CSS name - styles.css
body{
background:##FF0000;
}
I've tried .body....#body...html... .html.....#html.... also tried background-color:
Thanks
HTML name - index.html
<!doctype html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
</body>
</html>
CSS name - styles.css
body{
background:##FF0000;
}
I've tried .body....#body...html... .html.....#html.... also tried background-color:
Thanks