JSFiddle - React, Tailwind, and code Playground
by Mike McBride
HTML
<td valign="top" align="left">
<form name="postcode" action="plans.php" method="post">
<input type="text" name="c" size=1 class="postcode" onKeyup="autotab(this, document.postcode.o)" maxlength=1>
<input type="text" name="o" size=1 class="postcode" onKeyup="autotab(this, document.postcode.d)" maxlength=1>
<input type="text" name="d" size=1 class="postcode" onKeyup="autotab(this, document.postcode.e)" maxlength=1>
<input type="text" name="e" size=1 class="postcode" maxlength=1>
<br/><br/><br/>
then choose...<br/><br/>
<input name="electricity" type="checkbox" value="electricity" />electricity
<br/>
<input name="gas" type="checkbox" value="gas" />gas
</p>
</form>
</td>
CSS
/* CSS Document */
body {
font-size:14px;
font-family:"Century Gothic";
}
.table_header{
font-size:18px;
font-family:"Century Gothic";
color:#FFF;
}
.body_text{
text-align:justify;
}
.menu{
text-align:right;
vertical-align:bottom;
}
.postcode{
border-style:double;
font-size:20px;
border-color:#F60;
text-align:center;
vertical-align:middle;
height:70px;
}
input.checkbox{
height:40px;
width: 40px;
}