mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
31 lines
557 B
HTML
31 lines
557 B
HTML
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Testcase</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form>
|
||
|
|
||
|
<input type="text" size="50" value="input_type_text"><br>
|
||
|
<input type="password" size="50" value="input_type_password"><br>
|
||
|
<input type="checkbox" size="50"><br>
|
||
|
<input type="radio" size="50"><br>
|
||
|
|
||
|
<select size="1">
|
||
|
<option SELECTED>Select box</option>
|
||
|
<option>2</option>
|
||
|
<option>3</option>
|
||
|
</select><br>
|
||
|
|
||
|
<select size="3">
|
||
|
<option SELECTED>Select box</option>
|
||
|
<option>2</option>
|
||
|
<option>3</option>
|
||
|
</select><br>
|
||
|
|
||
|
<textarea>THis is a text area.</textarea><br>
|
||
|
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|