Is it neccessary to write doctype at the starting of the HTML page? E.g.
If I use this doctype and in the HTML file :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<body >
<table width="95%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#99FF66">
<tr>
<td>
<form id="login" name="loginForm" action="" method="post">
<table align="center" border="0" cellspacing="0">
<tr><td>User Name:</td><td><input class="inputtext" name="username" type="text" id="un"/></td></tr>
<tr><td>Password:</td> <td><input class="inputtext" name="password" type="password" id="pwd"/></td> </tr>
<tr><td style="padding: 0 0 0 3px"> <input name="Submit" type="submit" class="sbutton" tabindex="4" value="Login" /></td></tr>
</table>
</form>
</td>
</tr>
</table>
The table or the form is not coming at the center (horizontal and vertical) of the page. It is just horizontally centered. I want both. If I remove the above doctype, then the table is centered on both the axis. Please tell where I am wrong.
