Contents / Previous / Next


Form Example

This is the form and this is the HTML-source-code: <form> <TABLE cellspacing=10 cellpadding=10 border> <TR> <TD> Text: <input type="text" name="text1" value="default text"> </TD> </TR> <TR> <TD> Password: <input type="password" name="password1" value="default password"> </TD> </TR> <TR> <TD> <input type="checkbox" name="checkbox1" value="checkbox"> checkbox <BR><BR> <input type="radio" name="radio1" value="radio"> radio </TD> <TD> <select multiple> <option>Apples <option selected>Bananas <option>Cherries </select> </TD> </TR> <TR> <TD> <input type="reset"> </TD> <TD> <input type="submit"> </TD> </TR> </TABLE> </form>