Here it is, try it out:
(It's got Javascript in it but that won't work as far as I understand but I left it in anyways)
Edit: textarea added name="attr_"
------------------------
<!DOCTYPE html>
<html>
<body>
<h2>Primetime Adventures (PTA) Character Sheet</h2>
<p></p>
<fieldset>
<legend><h3>Series Info:</h3></legend>
<p><strong>Series Title</strong> <input type="text" name="attr_seriestitle"> <strong>Season</strong> <input type="number" name="attr_season"></p>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Personalia:</h3></legend>
<p><strong>Protagonist Name</strong> <input type="text" name="attr_pname"> <strong>Concept</strong> <input type="text" name="attr_concept"></p>
<p></p>
<p><strong>Story Arc -- Issue</strong> <input type="text" name="attr_issue"></p>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Screen Presence:</h3></legend>
<p></p>
<p><strong>Pilot/1st</strong><input type="number" name="attr_pilot" min="1" max="3"> <strong>2nd</strong><input type="number" name="attr_ep2" min="1" max="3"> <strong>3rd</strong><input type="number" name="attr_ep3" min="1" max="3"> <strong>4th</strong><input type="number" name="attr_ep4" min="1" max="3"> <strong>5th</strong><input type="number" name="attr_ep5" min="1" max="3">
<p><strong>If this is a 9 Episode Season, check box below to enable Episodes 6 — 9</strong></p>
<script language="JavaScript">
<!--
function enable_number(status)
{
status=!status;
document.f1.attr_ep6.disabled = status;
document.f1.attr_ep7.disabled = status;
document.f1.attr_ep8.disabled = status;
document.f1.attr_ep9.disabled = status;
}
//-->
</script>
</head>
<body onload=enable_number(false);>
<form name=f1 method=post>
<input type="checkbox" name=others onclick="enable_number(this.checked)" > <strong>6th</strong>
<input type="number" name="attr_ep6" min="1" max="3"> <strong>7th</strong>
<input type="number" name="attr_ep7" min="1" max="3"> <strong>8th</strong>
<input type="number" name="attr_ep8" min="1" max="3"> <strong>9th</strong>
<input type="number" name="attr_ep9" min="1" max="3">
</form>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Attributes:</h3></legend>
<p><strong>Select 1 Edge and 2 Connections or 2 Edges and 1 Connection</strong></p>
<p></p>
<p></p>
<table>
<tr>
<th><strong>Edges</strong></th></th>
<th><strong>Connections</strong></th>
</tr>
<tr>
<td><input type="text" name="attr_edge1"></td>
<td><input type="text" name="attr_connection1"></td>
</tr>
<tr>
<td><strong><input type="text" name="attr_edge2"></td>
<td><input type="text" name="attr_connection2"></td>
</tr>
</table>
<p></p>
<p></p>
<p><strong>Personal Set</strong> <input type="text" name="attr_pset1"> <strong>Personal Set</strong> <input type="text" name="attr_pset2"></p>
<p></p>
<p><strong>Nemesis</strong> <input type="text" name="attr_nemesis"> <strong>Fan Mail</strong> <input type="number" name="attr_fanmail"></p>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Notes:</h3></legend>
<p><textarea rows="4" cols="50" name="attr_textarea1></textarea></p>
</fieldset>
</body>
</html>
(It's got Javascript in it but that won't work as far as I understand but I left it in anyways)
Edit: textarea added name="attr_"
------------------------
<!DOCTYPE html>
<html>
<body>
<h2>Primetime Adventures (PTA) Character Sheet</h2>
<p></p>
<fieldset>
<legend><h3>Series Info:</h3></legend>
<p><strong>Series Title</strong> <input type="text" name="attr_seriestitle"> <strong>Season</strong> <input type="number" name="attr_season"></p>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Personalia:</h3></legend>
<p><strong>Protagonist Name</strong> <input type="text" name="attr_pname"> <strong>Concept</strong> <input type="text" name="attr_concept"></p>
<p></p>
<p><strong>Story Arc -- Issue</strong> <input type="text" name="attr_issue"></p>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Screen Presence:</h3></legend>
<p></p>
<p><strong>Pilot/1st</strong><input type="number" name="attr_pilot" min="1" max="3"> <strong>2nd</strong><input type="number" name="attr_ep2" min="1" max="3"> <strong>3rd</strong><input type="number" name="attr_ep3" min="1" max="3"> <strong>4th</strong><input type="number" name="attr_ep4" min="1" max="3"> <strong>5th</strong><input type="number" name="attr_ep5" min="1" max="3">
<p><strong>If this is a 9 Episode Season, check box below to enable Episodes 6 — 9</strong></p>
<script language="JavaScript">
<!--
function enable_number(status)
{
status=!status;
document.f1.attr_ep6.disabled = status;
document.f1.attr_ep7.disabled = status;
document.f1.attr_ep8.disabled = status;
document.f1.attr_ep9.disabled = status;
}
//-->
</script>
</head>
<body onload=enable_number(false);>
<form name=f1 method=post>
<input type="checkbox" name=others onclick="enable_number(this.checked)" > <strong>6th</strong>
<input type="number" name="attr_ep6" min="1" max="3"> <strong>7th</strong>
<input type="number" name="attr_ep7" min="1" max="3"> <strong>8th</strong>
<input type="number" name="attr_ep8" min="1" max="3"> <strong>9th</strong>
<input type="number" name="attr_ep9" min="1" max="3">
</form>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Attributes:</h3></legend>
<p><strong>Select 1 Edge and 2 Connections or 2 Edges and 1 Connection</strong></p>
<p></p>
<p></p>
<table>
<tr>
<th><strong>Edges</strong></th></th>
<th><strong>Connections</strong></th>
</tr>
<tr>
<td><input type="text" name="attr_edge1"></td>
<td><input type="text" name="attr_connection1"></td>
</tr>
<tr>
<td><strong><input type="text" name="attr_edge2"></td>
<td><input type="text" name="attr_connection2"></td>
</tr>
</table>
<p></p>
<p></p>
<p><strong>Personal Set</strong> <input type="text" name="attr_pset1"> <strong>Personal Set</strong> <input type="text" name="attr_pset2"></p>
<p></p>
<p><strong>Nemesis</strong> <input type="text" name="attr_nemesis"> <strong>Fan Mail</strong> <input type="number" name="attr_fanmail"></p>
</fieldset>
<p></p>
<fieldset>
<legend><h3>Notes:</h3></legend>
<p><textarea rows="4" cols="50" name="attr_textarea1></textarea></p>
</fieldset>
</body>
</html>