HTML.
Here is an <INPUT TYPE="text" SIZE=30> element: Enter your name: Here is an <INPUT TYPE="text" SIZE=20 MAXLENGTH=10> element: Enter something up to 10 characters long: Here is an <INPUT TYPE="password" SIZE=8> element: Guess the secret word: Any characters typed here appear as asterisks This is a <TEXTAREA ROWS=5 COLS=40> element: Your comments, please: Absolutely fabulous This is a <TEXTAREA ROWS=2 COLS=25 WRAP=soft> element: WRAP=soft adds word-wrap handling: Absolutely fabulous Other options are WRAP=physical and WRAP=virtual, but it's not clear to me how these differ from WRAP=soft. Netscape 2.02 treats all three the same: if the user does not press Enter, the text is returned with spaces between words (even if the text was automatically wrapped); if the user does press Enter, a CR/LF pair (%0D%0A) is returned embedded in the text. This is a <SELECT> element (with 5 <OPTION> elements): Where are you? USA France Germany United Kingdom Other This is a <SELECT SIZE=5> element (with 5 <OPTION> elements, one of which is an <OPTION SELECTED> element): What operating system are you using right now? DOS Windows 3.1 Windows 95 Windows 98 Linux OS/2 Other You may select only one item This is a <SELECT SIZE=3 MULTIPLE> element (with 5 <OPTION> elements, two of which are <OPTION SELECTED> elements): What operating systems have you ever used? DOS Windows 3.1 Windows 95 Windows 98 Linux OS/2 Other You may select several items Here are two <INPUT TYPE="radio"> elements: What gender are you? Male Female Here are three <INPUT TYPE="checkbox"> elements: Which of the following do you own? TV VCR CD Player Here is an <INPUT TYPE="hidden"> element (you should not see anything): Here is an <INPUT TYPE="image"> element: I believe this acts like a SUBMIT button. Here is an <INPUT TYPE="reset"> and an <INPUT TYPE="submit"> element:
<INPUT TYPE="text" SIZE=30>
<INPUT TYPE="text" SIZE=20 MAXLENGTH=10>
<INPUT TYPE="password" SIZE=8>
<TEXTAREA ROWS=5 COLS=40>
<TEXTAREA ROWS=2 COLS=25 WRAP=soft>
WRAP=soft
WRAP=physical
WRAP=virtual
%0D%0A
<SELECT>
<OPTION>
<SELECT SIZE=5>
<OPTION SELECTED>
<SELECT SIZE=3 MULTIPLE>
<INPUT TYPE="radio">
<INPUT TYPE="checkbox">
<INPUT TYPE="hidden">
<INPUT TYPE="image">
<INPUT TYPE="reset">
<INPUT TYPE="submit">