How do I center on a web page?
<!DOCTYPE html>
<html>
<body>
<table width="600" border="0">
<tr>
<td colspan="2" style="background-color:#FFA500;">
<h1>Page Title</h1>
</td>
</tr>
<tr>
<td style="background-color:#FFD700;width:100px;">
<b>Menu</b><br>
Foxtrot<br>
Waltz<br>
Tango
</td>
<td style="background-color:#EEEEEE;height:200px;width:500px;">
Ipsem Lorem</td>
</tr>
<tr>
<td colspan="2" style="background-color:#FFA500;text-align:center;">
Test Page</td>
</tr>
</table>
</body>
</html>
I found some tips like this:
margin: 0 auto;
Where does it get typed?
Thanks