Hauptmenü:
Formulare
| Tag | Attribut | Wert |
Erklärung | Beispiel |
| <form></form> | Definiert ein Formular | |||
| action | Pfad zu CGI-Skript | action="http://www.xy.de/cgi-bin/x.pl" | ||
| E-Mail-Adresse | action="mailto:x@z.de" | |||
| method | post , get | Art der Übermittlung | methode="post" | |
| <input/> | type | Definiert ein Formularelement | ||
| text | Texteingabe | <input type="text"/> | ||
| password | Feld zur Passworteingabe | |||
| radio | Radioknopf | <input type="radio" name="a" value="1"/> | ||
| checkbox | Kontrollkästchen | |||
| reset | Reset-Button | <input type="reset" value="Reset"/> | ||
| submit | Submit-Button (Abschicken) | |||
| button | Schaltfläche | |||
| <textarea> </textarea> | Mehrzeiliges Texteingabefeld | |||
| rows, cols | Wert | Anzahl der Zeilen, Länge | <textarea name="a" rows="3" cols="50"> </textarea> | |
| wraps | soft | Zeilenumbruch | ||
| <select> | Definiert Auswahlfeld | |||
| size | Wert | Definiert Anzahl der Felder | <select name="auswahl" size="1"> | |
| <option> | Auswahlfeld im <select>-Tag. | <option>Seite 1</option> |