<form action="somescript.php">
Text <input type="text" size="30" value="This is default text" name=myText>
Password <input type="password" size="30" value="sesame" name=myPassword> Button <input type="button" value="Label" name="myButton"> ImgButton? <input type="image" src="/icons/text.gif" name="myImgButton"> Radio <input type="radio" value="This" name="myRadio"> <input type="radio" value="That" name="myRadio"> Checkbox <input type="checkbox" value="0" name="myCheckbox"> File <input type="file" value="Give me your files" name="myFile"> Textarea <textarea cols="20" rows="5" name="myTextarea"> This is the default text </textarea> Select <select name="mySelect" size="5"> <option value="One" selected>One <option value="Two">Two <option value="Three">Three <option value="Four">Four <option value="Five">Five <option value="Six">Six </select> Reset <input type="reset" value="Reset"> Submit <input type="submit" value="Send"> </form> |