1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<html>
<head>
<title>Bobby</title>
<link href="/my/own/style.css" rel="stylesheet" type="text/css" />
</head>
<body ignore="me">
<h3>Bobby</h3>
<form action="TEST" method="get">
<div>
<input id="_submitted" name="_submitted" type="hidden" value="1" />
<table class="style_bitch">
<tr>
<td class="style_bitch_label">AAA</td>
<td class="style_bitch_field"><input class="style_bitch_input" id="plain" name="plain" type="text" /></td>
</tr>
<tr>
<td class="style_bitch_label">BBB</td>
<td class="style_bitch_field"><input class="style_bitch_input" id="jane" name="jane" type="text" /></td>
</tr>
<tr>
<td class="style_bitch_label">Mane</td>
<td class="style_bitch_field"><select class="style_bitch_select" id="mane" name="mane">
<option value="">-select-</option>
<option value="ratty">Ratty</option>
<option value="nappy">Nappy</option>
<option value="mr_happy">Mr Happy</option>
</select></td>
</tr>
<tr>
<td class="style_bitch_submit" colspan="2"><input class="style_bitch_button" id="_submit" name="_submit" type="submit" value="Submit" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>
|