I want the forms to be 105 pixels from the top and 300 pixels from the left, I type in this code and the forms just appear in the top left corner.
Code:
<DIV style="position:absolute;top:105;left:300" > <form name="input" action="index2.htm" method="get"> Name: <input type="text" name="user" /> <br /> <input type="radio" name="sex" value="Male" /> Male<br /> <input type="radio" name="sex" value="Female" /> Female <br /> <input type="checkbox" name="bike" value="Yes" /> I have a bike<br /> <input type="checkbox" name="car" value="Yes" /> I have a car <br /> <input type="submit" value="Submit" />
Comment