Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
body,td,th {
color: #FFFFFF;
}
body {
background-image: url(http://www.imikya.com/betatesting/bftest.jpg);
}
table {
position:absolute;
top:50%;
left:50%;
margin-left:-425px;
margin-top:-288px;
}
</style></head>
<body>
<table width="850" height="576" border="0" cellpadding="10" cellspacing="0" bgcolor="#000000">
<tr>
<td><div align="center"><img src="http://www.imikya.com/betatesting/splashtest.jpg" width="800" height="556"></div></td>
</tr>
</table>
</body>
</html>
But, the image is a little large and will have portions that are unviewable at 800x600 resolution screens and browser windows that are smaller than 850x650 or there abouts.
It would be a little better if you skipped the table:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
body,td,th {
color: #FFFFFF;
}
body {
background-image: url(http://www.imikya.com/betatesting/bftest.jpg);
}
img {
position:absolute;
top:50%;
left:50%;
margin-left:-400px;
margin-top:-278px;
}
</style></head>
<body>
<img src="http://www.imikya.com/betatesting/splashtest.jpg" width="800" height="556">
</body>
</html>
Bookmarks