You don't close your head on your blog.
HTML Code:
<style type="text/css" media="screen">
That is the line which screws things up. You need to do something like:
HTML Code:
<style type="text/css" media="screen">
body {color:#000000;background-color:#FFFFFF;}
</style>
</head>
<bod>
You didn't start your body either. It doesn't work in Opera neither, and I don't think it's likely to work in Safari or any KHTML/Webkit browser. The Gecko browsers do work with it though.
__________________
PHP Code:
<?php echo "Hello World"; ?>
HTML Code:
<html><head><title>Hello World</title></head><body><p>Hello World</p></body></html>
|