<html> <body> <form action="testforms.php" method="post"><select name="selectBox1" size="1"> <option>Entry 1</option> <option>Entry 2</option> <option selected="selected">Entry 3</option> <option>Entry 4</option> </select> <br><fieldset><legend>set 1</legend><input type="radio" name="radioGroup1" value="Entry 1" checked="checked"></input> Entry 1<input type="radio" name="radioGroup1" value="Entry 2"></input> Entry 2<input type="radio" name="radioGroup1" value="Entry 3"></input> Entry 3<input type="radio" name="radioGroup1" value="Entry 4"></input> Entry 4</fieldset><fieldset><legend>set 2</legend><input type="checkbox" name="boxGroup1" value="Entry 1" checked="checked"></input> Entry 1<br><input type="checkbox" name="boxGroup1" value="Entry 2"></input> Entry 2<br><input type="checkbox" name="boxGroup1" value="Entry 3" checked="checked"></input> Entry 3<br><input type="checkbox" name="boxGroup1" value="Entry 4" checked="checked"></input> Entry 4<br></fieldset><input name="textField2" type="text" value="Type here"></input><br><textarea name="textArea2" wrap="soft"rows="5"cols="20">Type here</textarea><br><input type="reset" ></input><input type="submit" ></input></form></body> </html>