All,
I'm trying to load a particular contact form in a .html page. Below is my code snippet. My issue isn't actually loading the .php page as you can see below it does that, however its aligning it in the middle.
This is the code of the .html page loading up the php page:
Code:
<html>
<head>
<title>Test Page</title>
</head>
<body >
<table width="600px" height="600px" align="center" border="0">
<iframe frameborder="0" src="contact/form.php" align="center" width="600px" height="600px"> </iframe>
</table>
</body>
</html>
The screenshot is the result of this page where the contact form is all the way on the left. If I am to change the align tag of the iframe to be align="right" then it does move the contact form all the way to the left. Any suggestions? Thanks!