Bueno, si lo que queres es centrar la tabla, entonces usas esto
Código HTML:
Ver original<!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"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <table width="50%" border="1" align="center"> nombre:
<input type="text" size="30" name="a" /><br /><table width="50%" border="1" align="center"> nombre:
<input type="text" size="30" name="b" /><br />
ahi tenés las dos variantes, la tabla centrada ó la tabla + la celda más abajo.
La primera parte del html contiene el llamado Doctype
Código HTML:
Ver original<!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">
No abundo en detalles, pero si usas ese (Transitional), el atributo
align es completamente válido, para las celdas y la tabla.
Saludos