Jump to content

Making a form page which looks a professional page.


RizwanAhmedMemon

Recommended Posts

I have deficalty making forms. I have made form page but all the controls I mean form buttons such as textarea, texttype, radio buttons etc they do not fit rightly in their position. As we see yahoo form or any other they are right in their position. One below the other right matching taking size like above one. How can I make my form page look like a professional. How can all the form buttons can fit together, right position? Please tell me with examples of markup. Rizwan

Link to comment
Share on other sites

You're talking about positioning your forms? If so, you can use a table (recommend for beginners, in my opinion for ease) so that you can position your forms correctly.

<table>  <tr>    <td>Name:</td>    <td><input type="text" value="" /></td>  </tr>  <tr>    <td>Message:</td>    <td><textarea cols="30" rows="20"></textarea></td>  </tr></table>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...