+ 13
How do you created columns and one of them have three places where you can enter things ?
3 Respuestas
+ 46
I hope you you've solved your problem by now. Although I don't see a good answer here. So here's my version.
This can be done with a simple table like so:
<table>
<tr>
<td>Name</td>
<td><input /></td>
</tr>
<tr>
<td>Age</td>
<td><input /></td>
</tr>
<tr>
<td>Country</td>
<td><input /></td>
</tr>
</table>
+ 10
Are you trying to use HTML? Can you provide an example? Can you answer these questions? If you do, I will be able to help you.
+ 10
I am using html. what kind of example do u need