Jump to content

Form HTML

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
jiacomino

jiacomino

    Newbie

  • Members
  • Pip
  • 1 posts
Hello. I want create a html form and I can't align the text form. Please how can I do to do it. Thank you to your response.

Edited by jiacomino, 05 November 2009 - 05:55 AM.
I have formuled very bad my question


#2
Orjan

Orjan

    Writes binary right handed and hex left handed

  • Moderators
  • 3,299 posts
just use the <form>, <input>, <textarea> and <select> with <option> tags.
an example could be:
<form method="GET" action="sendform.php">
<input type="text" name="field1" value="Default" />
<input type="radio" name="Question" value="Yes" />
<input type="radio" name="Question" value="No" />
<input type="password" name="pw" />
<select name="selectbox">
<option value="1">First</option>
<option value="2">Second</option>
<option value="3">Third</option>
</select>
</form>

__________________________________________
I study Information Systems at Karlstad University when I'm not on CodeCall