Hi, I am currently making a site for a project. I have the first page almost done, but there is a problem. The table won't display 🙁. Why is this? Thanks. I displayed the markup below:
<html>
<head>
<title>Seizure Disorder- Information on Epilepsy</title>
<style>
body
{
background-image:
url('http://www.seizure-disorder.info/images/brimage1.gif');
background-repeat: repeat-x
}
table
{
backround-color: #333333;
filter:alpha(opacity=50)
}
p
{
font-family: Arial;
font-size: 75%
}
</style>
</head>
<body>
<div align="center">
<table cellpadding="40" cellspacing="20" border="0">
<td>
<?php
echo "<p>Hello and welcome to Seizure Disorder.info! We are currently under construction, so please check back soon!";
?>
</td>
</table>
</div>
</body>
</html>