Here is my code. I want to display content in center of screen. But it is displaying in left side of screen. What to do for center alignment?
Thanks and regard,
Vikas
Thanks and regard,
Vikas
Code:
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--#include file="style.css"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>IP Allocation</title>
</head>
<body>
<div id="myDiv" style="background-color:#CDCCBA; width:600px; height:600px; ">
<table align="center">
<tr>
<th><font size="+1">Indian Oil Corporation Limited, Barauni Refinery</font></th>
</tr>
</table>
</div>
</body>
</html>
Comment