Está en la página 1de 4

CONALEP 1

VIRIDIANA HUERTA
GARCIA
6101-I
PSP: JUAN GABRIEL
DISEÑO DE PAGINAS
WEB
PRACTICA #9
<html>
<head><title>PRACTICA#9</TITLE>
<BODY BGCOLOR="green"><H1 ALIGN="CENTER">OPERACIONES</H1>
<form name="opera"><table border="4" align="center">
<tr>
<td>
<br>
<font face="vrinda">valor1:<input type="text" name="val1">
valor2:<input type="text" name="val2"><br><br><br></font>
<FONT COLOR="orange" face="Bell MT">Multiplicacion:<input
type="text" name="mul"><br><br></font>
<FONT COLOR="BLUE" face="Aharoni">Division:<input
type="text" name="div"><br><br></font>
<FONT COLOR="red" face="Broadway">Resta:<input type="text"
name="rest"><br><br></font>
<input type="button" name="cal"value=" calcular
operaciones" onClick="a( )">
<input type="submit"name="bor"value="borrar datos">
</form>
<Script language="JavaScript">
function a( )
{
var mul=0;
mul=document.opera.val1.value * document.opera.val2.value;
document.opera.mul.value=mul;
div=document.opera.val1.value / document.opera.val2.value;
document.opera.div.value=div;
rest=document.opera.val1.value - document.opera.val2.value;
document.opera.rest.value=rest;
}
</script>
</td>
<td>
<FORM>
<h1 align="center">Diseñado Por </h1>
<font face="vrinda">Nombre:
<input type="text" Name="textbox1"size="15"><br>
Apellido P:
<input type="text" Name="textbox2"size="15"><br>
Apellido M:
<input type="text" Name="textbox3"size="15"><br>
Fecha de Elaboracion:
<input type="text" Name="textbox3"size="15"><br></font>
</td>
</form>
</table>
<form>
<table border="4" align="center">
<tr>
<td>
<h1 align="center">DEFINICIONES</H1>
<OL TYPE="1">
<LI><font color="orange">Español</FONT>
<UL>
<LI>Materia en la cual te enseñan sobre español.
<DL>
<DT>
<DD>
</ul>
</DL>
<LI><font color="orange">Matematicas</FONT>
<UL>
<LI>Es donde aprendes a calcular
<DL>
<DT>
<DD>
</ul>
</DL>
<LI><font color="orange">Geografia</FONT>
<UL>
<LI>Te enseñan sobre el mundo
<DL>
<DT>
<DD>
</ul>
</DL>
<LI><font color="orange">Ciencias Sociales</FONT>
<UL>
<LI>Aprendes a convivir con las personas
<DL>
<DT>
<DD>
</ul>
</DL>
<LI><font color="orange">Biologia</FONT>
<ul>
<LI>Aprendes sobre tu cuerpo y su funcionamiento
<DL>
<DT>
<DD>
</ul>
</DL>
</td>
</form>
</body>
</table>
</html>

También podría gustarte