Here are some hexicetree:

A text field named "text1" that is 30 characters wide.
<input type="text" name="text1" size="30">

A text field named "text2" that is 30 characters wide but will only accept 20 characters.
<input type="text" name="text2" size="30" maxlength="20">

A text field named "text3" that is 40 characters wide with default value. the text here is an example.
<input type="text" name="text3" size="40" value="We are not alone">

A password field named "pass1" that is 30 characters wide.
<input type="password" name="pass1" size="30">

A password field named "pass2" that is 30 characters wide but will only accept 20 characters.
<input type="password" name="pass2" size="30" maxlength="20">

A password field named "pass3" that is 40 characters wide with default value.
<input type="password" name="pass3" size="40" value="We are not alone">

A textarea field named "comments" that is 45 characters wide and 6 lines high.
<textarea name="comments" rows="6" cols="45" wrap="virtual">
The first time I ever saw a web page, I thought.... (continue)
</textarea>

4 radio buttons with default selection
<input type="radio" name="food" value="hotdogs" checked> hotdogs are my favorite food

<input type="radio" name="food" value="hamburgers"> i like hamburgers

<input type="radio" name="food" value="steak"> steak is tasty

<input type="radio" name="food" value="beans"> beans are for veggie-lovers


4 check boxes with default selections
<input type="checkbox" name="food1" value="hotdogs" checked> hotdogs are my favorite food

<input type="checkbox" name="food2" value="hamburgers"> i like hamburgers

<input type="checkbox" name="food3" value="steak" checked> steak is tasty

<input type="checkbox" name="food4" value="beans"> beans are for veggie-lovers


A four item select menu with the third item selected initially
<select name="cheeses">
<option value="colby"> Colby from Ohio</option>
<option value="sharp"> Sharp Cheddar from Oregon</option>
<option value="swiss" selected> Holy Cheese from Switzerland</option>
<option value="longhorn" > English Longhorn</option>
</select>

Submit button
<input type="submit" value="Send this form data now!">

Reset button
<input type="reset" value="Clear the web form">

I think i have given you much forms.
:D 8)