tengo el sgte formulario como puedo hacer que funcione sabe de alguno parecido para guiarme estudiarlo y comerzar hacer el mio porque no se por donde comenzar
periodos.html
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="coffee-with-milk[1].css" type="text/css" />
</head>
<body>
<fieldset>
<legend>Vista Estudiante</legend>
<center>Periodo
<select name="jumpMenu" id="jumpMenu" onchange="MM_jumpMenu('parent',this,0)">
<option>2010-I</option>
<option>2010-II</option>
<option>2011-I</option>
<option>2011-II</option>
</select>
</center>
<p></p>
<center>
<table border="1">
<thead>
<tr>
<td><u><p>Curso</p></u></td>
<td><u><p>Fecha de Inicio</p></u></td>
<td><u><p>Fecha de Termino</p></u></td>
<td><u><p>Calificacion</p></u></td>
<td><u><p>Certificacion</p></u></td>
</tr>
</thead>
<tr>
<td><p>-contabilidad</p></td>
<td><input name="fechaI1" type="text" size="15" /></td>
<td><input name="fechaF1" type="text" size="15" /></td>
<td><input name="c1" type="button" value="calificacion" /></td>
<td><input name="cer1" type="button" value="certificacion" /></td>
</tr>
<tbody>
<tr>
<td><p>-liderazgo</p> </td>
<td><input name="fechaI2" type="text" size="15" /></td>
<td><input name="fechaF2" type="text" size="15" /></td>
<td><input name="c2" type="button" value="calificacion" /></td>
<td><input name="cer1" type="button" value="certificacion" /></td>
</tr>
<tr>
<td><p>-matematicas</p></td>
<td><input name="fechaI3" type="text" size="15" /></td>
<td><input name="fechaF3" type="text" size="15" /></td>
<td><input name="c3" type="button" value="calificacion" /></td>
<td><input name="cer1" type="button" value="certificacion" /></td>
</tr>
<tr>
<td><b>...</b></td>
<td><b>...</b></td>
<td><b>...</b></td>
<td><b>...</b></td>
<td><b>...</b></td>
</tr>
</tbody>
</table>
<input name="print" type="button" value="Print" />
</center>
</fieldset>
</body>
</html>
calificaciones.html
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 tdansitional//EN" "http://www.w3.org/td/xhtml1/DTD/xhtml1-tdansitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<fieldset>
<legend>Calificaciones</legend>
<table>
<tr>
<td>Examen Parcial</td>
<td>Promedio de Practicas</td>
<td>Examen Final</td>
<td>Examen Sustitutorio</td>
<!--<td>Promedio</td>-->
</tr>
<tr>
<td><input name="A" type="text" size="15" /></td>
<td><center><input name="B" type="text" size="15" /></center></td>
<td><input name="C" type="text" size="15" /></td>
<td><center><input name="D" type="text" size="15" /></center></td>
</tr>
<P></P>
<P></P>
<BR />
<tr>
<td></td>
<td></td>
<td> Promedio Pronderado </td>
<td><center><input name="ABCD" type="text" size="15" /></center></td>
</tr>
</table>
</fieldset>
</body>
</html>