|
Posted by dorayme on May 14, 2008, 7:36 pm
Please log in for more thread options
In article
> I've tried almost everything and looked almost everywhere... Any clues
> as to how to get my white text to show up on the black background,
> centered in the middle of the page and in large font?
Here is part of the way:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"> <html>
<head>
<style type="text/css">
body {color: white; background: black;}
div {text-align: center; font-size: 1000%;}
</style>
</head>
<body>
<div>This is big</div>
</body>
</html>
--
dorayme
|