Files
FireBee_Setup/tools/highwire/html/sample/formtest.htm
2022-11-14 10:05:42 +01:00

1 line
565 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>Forms Test</title>
</head>
<body bgcolor="#8888DD">
<form>
<input type=checkbox> <input type=checkbox checked> CheckBox<br>
<input type=radio><input type=radio checked>RadioButton<br>
<input type=text>Text<br>
<input type=file>File<br>
<input type=password>Password<br>
<input type=hidden>Hidden value<br>
<input type=reset><input type=submit><input type=button><br>
<input type=button value=" Text Value ">
<input type=button value=" Text Value " checked> Button<br>
</form>
</body>
</html>