I am looking at creating form with 4 columns like
Name Phone City Remarks
<html>
<body>
<form id="myform" action="/" method="post" enctype="application/x-www-form-urlencoded">
<input type="text" name="Name" id="mytext" />
<input type="text" name="Phone number" id="mytext" />
<input type="text" name="City" id="mytext" />
<input type="text" name="remarks" id="mytext" />
<input type="submit" id="mysubmit" />
</form>
</body>
</html>
In the code I have they look to be having separated.. I want like form/grid can you please let me know how to do that
Use a table