HTML interesse |
|
http://www.ngame.nl/index.html
Hoe kan ik die tekst netjes in het midden uitlijnen? En ja ik weet het, ik maak de footer nog langer.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body bgcolor="#e2e2e2">
<table width="750" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><img src="header.gif" width="750" height="110" /></td>
</tr>
<tr>
<td background="content.gif">Deze tekst moet in het midden.</td>
</tr>
<tr>
<td><img src="footer.gif" width="750" height="80" /></td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body bgcolor="#e2e2e2"> <table width="750" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td><img src="header.gif" width="750" height="110" /></td> </tr> <tr> <td background="content.gif">Deze tekst moet in het midden.</td> </tr> <tr> <td><img src="footer.gif" width="750" height="80" /></td> </tr> </table> </body> </html>
|