HyperTextMarkupLanguage

HTML Advanced Functions


| Home | Agenda | Next |

Input Fields - Continued

TYPE = "SUBMIT"
Optional: [VALUE]

Creates a button the user pushes when they're done completing the form. A form is useless without a SUBMIT button.

Example:

        <FORM>
        <INPUT TYPE=submit VALUE="Press To Send">
        </FORM>
VALUE: displays text on the SUBMIT button. Default is "Submit"

| Home | Agenda | Next |

T10D029