1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<!DOCTYPE html>
<html>
<body>
<form action="submit" method="post">
<input type="text" name="textParam" value="textValue"/><br/>
<input type="checkbox" name="checkboxParam" id="checkboxParam" value="checkboxValue" checked="true"/><label for="checkboxParam">Checkbox</label><br/>
<input type="radio" name="radioParam" id="radioParam1" value="radioValue1" checked="true"/><label for="radioParam1">Radio 1</label><br/>
<input type="radio" name="radioParam" id="radioParam2" value="radioValue2"/><label for="radioParam2">Radio 2</label><br/>
<select name="selectOne">
<option value="value1">Value1</option>
<option value="value2">Value2</option>
<option value="value3">Value3</option>
</select><br/>
<select name="selectMultiple" multiple>
<option value="value1">Value1</option>
<option value="value2">Value2</option>
<option value="value3">Value3</option>
</select><br/>
<input type="submit" value="send form" name="submit"/>
</form>
</body>
</html>
|