PHP beginner |
|
Hej allemaal,
Op mijn website zit een hele grote en lege ruimte, voorbeeld (onderaan):
http://www.dma-hq.nl/esports-servers/
http://www.dma-hq.nl/esports-servers/
Dit is de code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>eSports-Servers.com :: Coming Soon</title>
<style type="text/css">
body
{
background-color: #003646;
background-image: url(images/background.gif);
background-repeat: repeat-x;
text-align: center;
margin: 0px;
color: #FFFFFF
}
.div_main
{
position: reletive;
height: 825px;
width: 865px;
margin: 0 auto;
border: 1px solid black;
background-color: white;
}
iframe
{
border: 0px;
}
img
{
border: 0px;
}
a
{
color: #FFFFFF;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div class="div_main">
<img src="images/header1.gif" /><img src="images/header2.gif" />
<table border="0px" cellspacing="0px" cellpadding="0px">
<tr>
<td><a href="home.html" target="iframe"><img src="images/home.gif" /></a></td>
<td><a href="webhosting.html" target="iframe"><img src="images/webhosting.gif" /></a></td>
<td><a href="voicehosting.html" target="iframe"><img src="images/voicehosting.gif" /></a></td>
<td><a href="gamehosting.html" target="iframe"><img src="images/gamehosting.gif" /></a></td>
<td><a href="network.html" target="iframe"><img src="images/network.gif" /></a></td>
<td><a href="forums.html" target="iframe"><img src="images/forums.gif" /></a></td>
<td><a href="contact.html" target="iframe"><img src="images/contact.gif" /></a></td>
<td width="251" background="images/leeg.gif" align="center"><a href="controlpanel.html" target="iframe">Control Panel</a></td>
</tr>
</table>
<iframe name="iframe" width="100%" height="100%" src="home.html"></iframe>
<span>Copyright © http://www.esports-servers.nl - Made By Erwin Okken</span>
</div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>eSports-Servers.com :: Coming Soon</title> <style type="text/css"> body { background-color: #003646; background-image: url(images/background.gif); background-repeat: repeat-x; text-align: center; margin: 0px; color: #FFFFFF } .div_main { position: reletive; height: 825px; width: 865px; margin: 0 auto; border: 1px solid black; background-color: white; } iframe { border: 0px; } img { border: 0px; } a { color: #FFFFFF; } </style> <script type="text/javascript"> </script> </head> <body> <div class="div_main"> <img src="images/header1.gif" /><img src="images/header2.gif" /> <table border="0px" cellspacing="0px" cellpadding="0px"> <tr> <td><a href="home.html" target="iframe"><img src="images/home.gif" /></a></td> <td><a href="webhosting.html" target="iframe"><img src="images/webhosting.gif" /></a></td> <td><a href="voicehosting.html" target="iframe"><img src="images/voicehosting.gif" /></a></td> <td><a href="gamehosting.html" target="iframe"><img src="images/gamehosting.gif" /></a></td> <td><a href="network.html" target="iframe"><img src="images/network.gif" /></a></td> <td><a href="forums.html" target="iframe"><img src="images/forums.gif" /></a></td> <td><a href="contact.html" target="iframe"><img src="images/contact.gif" /></a></td> <td width="251" background="images/leeg.gif" align="center"><a href="controlpanel.html" target="iframe">Control Panel</a></td> </tr> </table> <iframe name="iframe" width="100%" height="100%" src="home.html"></iframe> <span>Copyright © http://www.esports-servers.nl - Made By Erwin Okken</span> </div> </body> </html>
|