Within a form, I have two text boxes and I would like to add labels underneath each of them for better clarification. To illustrate my idea, here is a simple diagram:
(input1)<--space-->(input2)
<label1><--space--><label2>
Is there a way to achieve this?
Update:
I haven't provided much detail, but I am attempting to accomplish this using only HTML. Here is what I have tried so far:
<div><input name="city" type="text" value="" /> <input name="state"
type="text" value=""/></div> <label style="color:grey;"
>City</label> <label style="color:grey;" >State</label></div>