Fecha: Agosto 14 de 2013
Asignatura: Tecnología e Informática.
Formación en Valor: Caridad.
Núcleo Integrador: Área de Texto - <textarea>, Elementos de entrada <input> y campo contraseña.
Objetivo: Crear formularios para capturas de datos en páginas web.
Teniendo en cuenta el siguiente código HTML, copie y visualice la página web. desarrolle una página que muestre una encuesta de satisfacción para los clientes de su empres.
<html>
<head> <title>Formulario Y Tablas! </title></head>
<body text="Black" bgcolor="Violet">
<table border="5" bgcolor="white"">
<th colspan="10"> Encuesta Colegio Eucaristico</th>
<form>
<tr>
<td>Escriba Su Nombre Completo
<br>
<input name="nombre" Type="Text" Size="50">
<br><br>
Escriba Su Contraseña <br>
<input name="nombre" Type="Password" Value="Contraseña" Size="50">
<br>
<td>Seleccione El Sexo <BR>
Masculino <input name="SEXO" type="radio" value="masculino"> <BR>
Femenino <input name="SEXO" type="radio" value="Femenino" checked> <BR><br>
</td>
</tr>
<tr>
<td>Ocupacion <br>
<input name="ocupacion" type="text" size="50" maxlenght="50">
</td>
<br>
<td>Seleccione Ocupacion<br>
Trabajador<input name="ocupacion" Type="Radio" Value="trabajador"><br>
Estudiante<input name="ocupacion" Type="Radio" Value="estudiante" checked><br>
Ama de Casa<input name="ocupacion" Type="Radio" Value="Ama de casa" checked><br>
Otros<br><input name="ocupacion" Type="Text" Value="Cual?" Size="40" maxlength="50">
</td>
<tr>
<td>En Que Ciudad Vive?
<br>
</td>
<br>
<td>
<select name="ciudad">
<option selected>--- Elige la Ciudad ---</option>
<option>Cartagena</option>
<option>Barranquilla</option>
<option>Santa Marta</option>
</select>
</td>
</tr><br><br>
<tr>
<td>Cual es Su Animal Preferido?
<br>
</td>
<br>
<td>Seleccione La Raza<br>
Pincher <input name="Sexo" Type="Radio" Value="Pincher"><br>
Labrador<input name="Sexo" Type="Radio" Value="Labrador" checked><br>
Pastor Aleman<input name="Sexo" Type="Radio" Value="Pastor Aleman" checked><br>
Golden<input name="Sexo" Type="Radio" Value="Golden" checked><br>
Perro Siberiano<input name="Sexo" Type="Radio" Value="Perro Siberiano" checked><br>
Otros<br><input name="cuidad" Type="Text" Value="Cual?" Size="40" maxlength="50">
</td>
</tr>
<tr>
<td>Esta Usted Interesado Por El Medio Ambiente?<br>
</td>
<td>
<select name="animal" size="3" multiple>
<option selected>---Seleccione su Respuesta ---</option>
<option value="ave">Si</option>
<option>No</option>
<option>Tal vez</option>
<option>En Absoluto</option>
</select>
</td>
<tr>
<td>Usted Ha Ayudado a Evitar El Calentamiento Global?
<br></td>
<br>
<td><br>
No<input name="Sexo" Type="Radio" Value="Pincher"><br>
Si<input name="Sexo" Type="Radio" Value="Labrador" checked><br>
Algunas Veces<input name="Sexo" Type="Radio" Value="Pastor Aleman" checked><br>
Porque?<br><input name="cuidad" Type="Text" Value="Explique su Respuesta" Size="40">
</td>
</tr>
<tr>
<td>Que Piensa Usted De los Eco-Apagones?
<br>
</td>
<br>
<td><br>
No Sirven Para Nada<input name="Sexo" Type="Radio" Value="Pincher"><br>
Nos Ayudan a Ahorrar<input name="Sexo" Type="Radio" Value="Labrador" checked><br>
Porque?<br><input name="cuidad" Type="Text" Value="Explique su Respuesta" Size="40" maxlength="50">
</td>
</tr>
<tr>
<th colspan="2"> <input name="SUBMIT" type="submit" value="Aceptar"></th>
</form>
</body>
</html>
No hay comentarios:
Publicar un comentario