Rubrica 3: Elaboracion de Paginas Web

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 8

qwertyuiopasdfghjklzxcvbnmqwerty

uiopasdfghjklzxcvbnmqwertyuiopasd
fghjklzxcvbnmqwertyuiopasdfghjklzx
cvbnmqwertyuiopasdfghjklzxcvbnmq
Rubrica 3
wertyuiopasdfghjklzxcvbnmqwertyui
Elaboració n de pá ginas Web.

opasdfghjklzxcvbnmqwertyuiopasdfg
Leslie Luna Bañuelos 6101 635-0

hjklzxcvbnmqwertyuiopasdfghjklzxc
vbnmqwertyuiopasdfghjklzxcvbnmq
wertyuiopasdfghjklzxcvbnmqwertyui
opasdfghjklzxcvbnmqwertyuiopasdfg
hjklzxcvbnmqwertyuiopasdfghjklzxc
vbnmqwertyuiopasdfghjklzxcvbnmq
wertyuiopasdfghjklzxcvbnmqwertyui
opasdfghjklzxcvbnmqwertyuiopasdfg
hjklzxcvbnmrtyuiopasdfghjklzxcvbn
mqwertyuiopasdfghjklzxcvbnmqwert
Código:
<html>

<head><title>rubrica 1</title>

<body>

<h1 align="center"><font color="purple"><face font="Century Gothic"><font size="10">rUuBriiQa


3</font></h1>

<br>

<TR>

<table border="3">

<td fontcolor= "black">

<form name="mul">

MULTIPLICACION <BR>

numero 1: <input type= "text" name= "n1"> <br>

numero 2: <input type= "text" name= "n2"> <br>

numero 3: <input type= "text" name= "n3"> <br>

numero 4: <input type= "text" name= "n4"> <br>

numero 5: <input type= "text" name= "n5"> <br>

numero 6: <input type= "text" name= "n6"> <br>

multiplicacion:<input type="text"name="mult"><br>

<input type="button"name="cal"value="calcular "onClick="A()">

<input type="submit"name="bor"value="borrar">

</form>

<script lenguage="JavaScript">

function A()

var mult=0;
mult=document.mul.n1.value*document.mul.n2.value*document.mul.n3.value*document.mul.n
4.value

*document.mul.n5.value*document.mul.n6.value;

document.mul.mult.value=mult;

</script></td>

<TR>

<td fontcolor="black">

<form name= "division">

DIVISION <BR>

numero 1: <input type= "text" name= "n1"> <br>

numero 2: <input type= "text" name= "n2"> <br>

numero 3: <input type= "text" name= "n3"> <br>

numero 4: <input type= "text" name= "n4"> <br>

numero 5: <input type= "text" name= "n5"> <br>

numero 6: <input type= "text" name= "n6"> <br>

Division:<input type="text"name="div"><br>

<input type="button"name="cal"value="calcular "onClick="B()">

<input type="submit"name="bor"value="borrar">

</form>

<script lenguage="JavaScript">

function B()

var div=0;
div=document.division.n1.value/document.division.n2.value/document.division.n3.value/docume
nt.division.n4.value/document.division.n5.value

/document.division.n6.value;

document.division.div.value=div;

</script>

</td>

</TR>

<TR>

<td fontcolor="black">

<form name= "resta">

RESTA <br>

numero 1: <input type= "text" name= "n1"> <br>

numero 2: <input type= "text" name= "n2"> <br>

numero 3: <input type= "text" name= "n3"> <br>

numero 4: <input type= "text" name= "n4"> <br>

numero 5: <input type= "text" name= "n5"> <br>

numero 6: <input type= "text" name= "n6"> <br>

Resta:<input type="text"name="res"><br>

<input type="button"name="cal"value="calcular "onClick="C()">

<input type="submit"name="bor"value="borrar">

</form>

<script lenguage="JavaScript">

function C()

var res=0;
res=document.resta.n1.value-document.resta.n2.value-document.resta.n3.value-
document.resta.n4.value-document.resta.n5.value-

document.resta.n6.value;

document.resta.res.value=res;

</script>

</td>

<TR>

<TD>

<ALIGN="Center">Forma para examen extraordinario</h1>

<FORM METHOD= "POST" ACTION= "MAILTO:lesslie.luna@gmail.com">

<BR>Nombre:

<input type="text" Name="txtbx1" size="20">

<BR>Direccion:

<input type="text" Name="txtbx2" size="35">

<BR>Telefono:

<input type="text" Name="txtbx2" size="35">

<table border=2><Font color="Gray"></font>

<TR>

<TD>

Marca tu semestre<BR>

<INPUT TYPE="CHECKBOX" NAME="primero" VALUE "" checked>

primero<BR>

<INPUT TYPE="CHECKBOX" NAME="segundo" VALUE "" checked>


segundo<BR>

<INPUT TYPE="CHECKBOX" NAME="tercero" VALUE "" checked>

tercero<BR>

<INPUT TYPE="CHECKBOX" NAME="cuarto" VALUE "" checked>

cuarto<BR>

<INPUT TYPE="CHECKBOX" NAME="quinto" VALUE "" checked>

quinto<BR>

<INPUT TYPE="CHECKBOX" NAME="sexto" VALUE "" checked>

sexto<BR>

</TD>

<TD>

Nivel del examen solicitado<BR>

<BR><INPUT TYPE="RADIO" NAME="txtbx3" VALUE "Bajo">Bajo

<BR><INPUT TYPE="RADIO" NAME="txtbx4" VALUE "medio">medio

<BR><INPUT TYPE="RADIO" NAME="txtbx5" VALUE "superior">superior

<BR>

</TD>

<TD>

Formas de Pago para el examen<BR>

<SELECT NAME= "txtbx6",MULTIPLE SIZE="3">

<option selected>

<option> visa

<option> contado
<option> cheque

</select>

</TD>

<BR>

<tr>

<td>

<h2 DIV ALIGN="LEFT">instrucciones especiales </h2>

<TEXTAREA NAME= "txtbx6" value="sin instrucciones especiales"> sin instrucciones especiales


</textarea>

</TD>

</tr>

<tr>

<td>

<input type="SUBMIT" value="aceptar">

<input type="RESET" value="cancelar">

</tr>

</td>

</body>

</html>

You might also like