Hi is the code of my very simple form:
How can I align the two input fields?
<br>
Naam: <input name="name" value="" type="text"><br>
Email: <input name="email" value="" type="text"><br>
<input name="submit" value="Submit" type="submit">
How can I align the two input fields?
Hi The King,
Using css is current 'best practice', however the easy way is to put your code into a simple table:
Using css is current 'best practice', however the easy way is to put your code into a simple table:
<table>
<tr>
<td>Naam:</td>
<td><input name="name" value="" type="text"></td>
</tr>
<tr>
<td>Email:</td>
<td><input name="email" value="" type="text"></td>
</tr>
<tr>
<td> </td>
<td><input name="submit" value="Submit" type="submit"></td>
</tr>
</table>
Bob
This topic is locked and no more replies can be posted.