You are on page 1of 18

http://www.cristalab.

com/tutoriales/crear-menus-de-navegacion-en-css-usando-listas-c130l/
http://www.lawebera.es/comunidad/articulos/diseno-web/css/menu-desplegable-css-
html.php

http://www.buayacorp.com/archivos/menus-simples-con-css-y-listas/

http://www.forosdelweb.com/f4/menu-horizontal-con-submenu-desplegable-491916/
Submenu
http://www.chuidiang.com/css/ejemplos/menu_desplegable_css.php

http://www.forosdelweb.com/f53/menu-horizontal-submenus-css-
690425/http://www.christiananswers.net/spanish/dropdownboxcode-s.html

http://www.jmarshall.com/easy/html/spanish/

http://gias720.dis.ulpgc.es/Gias/Cursos/Tutorial_html/forms.htm

http://www.superhosting.cl/manuales/diseno-web-html-basico.html

http://www.webtaller.com/construccion/lenguajes/html/lecciones/formularios_html_5.php
http://www.webestilo.com/php/php00.phtml
http://www.todotegusta.com/2008/12/instalacin-de-apache-php-mysql/
http://www.aulaclic.es/dreamweaver8/
http://www2.uca.es/serv/sc/manual-html/
http://www.tallerwebmaster.com/tutorial/crear-formulario-de-contacto-con-
dreamweaver/42/
http://www.angelontheweb.com/ar/como-subir-una-pagina-web-a-internet-hosting-y-
dominio-gratis.html
http://www.webestilo.com/html/cap7d.phtml
http://www.videotutoriales.es/curso-con-video-tutoriales-de-dreamweavermx/ejercicio-de-
tabla-e-imagen-autoampliable-en-dreamweaver/ejercicio-de-tabla-e-imagen-autoampliable-
en-dreamweaver.html
http://www.videotutoriales.es/temariocursosformaciondreamweaver/
http://www.tu.tv/videotag/c_tutoriales/dreamweaver/ejemplo
http://www.ferpol.com/buttoncreat.htm
http://html.conclase.net/w3c/html401-es/interact/forms.html
http://www.htmlpoint.com/jscript/
http://www.softonic.com/s/crear-botones-html
http://www.ferpol.com/buttonmaker.htm
http://html.conclase.net/tutorial/html/5/6
http://www.htmlpoint.com/dhtml/15/index.html
http://platea.pntic.mec.es/~abercian/guiahtml/colores.htm
http://www.htmlquick.com/es/tutorials/forms.html
http://www.maestrosdelweb.com/editorial/fflashphpform/
http://www.webexperto.com/articulos/art/111/todo-sobre-formularios-en-html/
http://www.mcanam.com/articulos/PHP.php?id=6

mira lo q podes hacer es poner un boton flash q venga incluido con el programa. vas a
insertar/media/boton flash y te buscas alguno...
si queres hacer el boton a tu gusto te recomiendo Flash 8 o alguna version mas avanzada...
lo q tenes q hacer es crear un archivo, luego presionas Ctrl+F8 (insertar simbolo) y eliges la
opcion boton y le colocas un nombre. luego tienes q crear en la nueva hoja q te aparecera el
boton q vos qieras... si lo tenes diseado en otro programa como photoshop presiona Ctrl+R
(importar imagen) y ahi busca el archivo de la imagen de tu boton. esa imagen sera la q
aparecera cuando el boton este en reposo, es decir cuando abris la pagina y te aparece el
boton sin hacerle nada. luego presiona F6 y vas a ver q te va a marcar la parte q dice "sobre"
ahi vuelves a hacer lo mismo q con el boton en estado de "reposo" osea dibujarlo o
importarlo!
luego en la parte de arriba del programa selecciona la opcion "escena 1" y se te v a ir a otra
"hoja" ahi lo q tenes q hacer es abrir la biblioteca (Ctrl+L) y tomar el archivo del boton segun el
nombre q le hayas puesto y de ahi moverlo hacia la hoja de la "escena 1". puedes presionar
Ctrl+Enter y vas a ver como quedo el boton terminado.
bien ahora lo q tienes q hacer es guardar el archivo en una extension .swf NO .FLA! para eso
vas a Archivo/Exportar/Pelicula y la guardas con el nombre q qieras.
ahora lo q debes hacer es colocarla en el DreamWeaver. para eso inserta este codigo en donde
quieras q aparezca el boton:

<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8
codebase="http://download.macromedia.c
width="32" height="32">
<param name="movie" value="archivo flash" />
<param name="quality" value="high" />
<embed src="archivo flash" quality="high" pluginspage="http://www.macromedia.com/g
type="application/x-shockwave-flash" width="32"
height="32">
</object>

En el cdigo hay varias cosas que deber cambiar, segn los detalles de su animacin flash:
Primero, el nombre del archivo flash, en el ejemplo puede ver "archivo flash" en dos lugares,
deber cambiar ambos por el nombre de tu archivo siguiendo la ruta correcta, por ejemplo,
/imagenes/archivo.swf (esto le esta indicando de que el archivo flash lo guardaste dentro del
directorio imagenes en el servidor)
En segundo lugar, deber cambiar el tamao, si se fijas en el ejemplo, ver dos pares de
"width" y "height" que tienen un valor de 32 pxeles cada uno.
Eso quiere decir que la animacin tiene 32 px de altura y 32 px de ancho, tu deberas asignarle
los valores propios de su animacin.
Luego lo ultimo q tienes q hacer es crear el formulario. para eso pega este codigo:
<?
if (!$HTTP_POST_VARS){
?>
<br>
<form action="<? echo $PHP_SELF ?>" method=post>
<table width="384" height="280" border="0">
<tr>
<td height="131" colspan="3"><p><span class="Estilo2">Nombre: </span>
<input type=text name="nombre" size=30>
</p>
<p><span class="Estilo2">Email: </span>
<input type=text name=email size=30>
</p>
<p><span class="Estilo2">Provincia: </span>
<input type="text" name="email2" size="30" />
</p> </td>
</tr>
<tr>
<td width="71"><span class="Estilo2">Mensaje:</span></td>
<td width="297" colspan="2">
<div align="left">
<textarea name=coment cols=40 rows=6></textarea>
</div></td>
</tr>

<tr>
<td colspan="3"><center>
<input name="submit" type=submit value="Enviar">
</center></td>
</tr>
</table>
<br>
<br>
</form>
<?
}else{
//Estoy recibiendo el formulario, compongo el cuerpo
$cuerpo = "Formulario enviado\n";
$cuerpo .= "Nombre: " . $HTTP_POST_VARS["nombre"] . "\n";
$cuerpo .= "Email: " . $HTTP_POST_VARS["email"] . "\n";
$cuerpo .= "Comentarios: " . $HTTP_POST_VARS["coment"] . "\n";

//mando el correo...
mail("Tu mail","Asunto del mail",$cuerpo,"from: tu mail");

echo "<center>El mensaje ha sido enviado correctamente</center>";
}
?>

en la parte de abajo tienes que cambiar donde puse "tu mail" por el mail que quieres que se
envie el formulario y donde dice "asunto del mail" el asunto con el que quieres que te llegue a
tu mail por ejemplo "formulario de mi web"
cuando pegues este codigo vas a ver q te va a aparecer ese boton de enviar q avos no te gusta.
bueno cortalo y pone el boton q creaste poniendo el codigo q te di...
esto es todo!

espero q te sirva!

Menu Desplegable
<form>
<SELECT NAME="urldestino">
<option selected>--- M E N U ---
<option value="inicio.html" >Inicio
<option value="seccion1.html">Album de fotos
<option value="seccion2.html">Textos interesantes
<option value="seccion3.html">Noticias
<option value="seccion4.html">Novedades
<option value="seccion5.html">Mi diario
</SELECT>
<input type="button" value="IR" onClick="location=this.form.urldestino.value"
name="button">
</form>

Crear boton
<FORM NAME="aceButton"><INPUT TYPE="BUTTON" VALUE="VER EL EJEMPLO"
onClick="self.location.href=('http://www.tusite.com')"></FORM>

PARA QUE SE VEA COMO EL BOTON LINK:
<INPUT
onclick="self.location.href=('http://canomazo.webcindario.com/index2.htm')"
type=button value="RECURSOLANDIA"
style="background-color: #E1C4FF; border: 1 solid #FF0000">
PARA QUE SE VEA COMO EL BOTON RESET:
<INPUT name=reset type=reset value=Reset style="background-color: #DFBFFF;
border: 1 solid #FF00FF">

Formulario
<FORM action="http://algunsitio.com/prog/usuarionuevo" method="post">
<P>
<LABEL for="nombre">Nombre: </LABEL>
<INPUT type="text" id="nombre"><BR>
<LABEL for="apellido">Apellido: </LABEL>
<INPUT type="text" id="apellido"><BR>
<LABEL for="email">email: </LABEL>
<INPUT type="text" id="email"><BR>
<INPUT type="radio" name="sexo" value="Varn"> Varn<BR>
<INPUT type="radio" name="sexo" value="Mujer"> Mujer<BR>
<INPUT type="submit" value="Enviar"> <INPUT type="reset">
</P>
</FORM>

<FORM action="http://algunsitio.com/prog/algunprograma" method="post">
<P>
<SELECT name="ComOS">
<OPTION selected label="ninguno" value="ninguno">Ninguno</OPTION>
<OPTGROUP label="PortMaster 3">
<OPTION label="3.7.1" value="pm3_3.7.1">PortMaster 3 con ComOS 3.7.1</OPTION>
<OPTION label="3.7" value="pm3_3.7">PortMaster 3 con ComOS 3.7</OPTION>
<OPTION label="3.5" value="pm3_3.5">PortMaster 3 con ComOS 3.5</OPTION>
</OPTGROUP>
<OPTGROUP label="PortMaster 2">
<OPTION label="3.7" value="pm2_3.7">PortMaster 2 con ComOS 3.7</OPTION>
<OPTION label="3.5" value="pm2_3.5">PortMaster 2 con ComOS 3.5</OPTION>
</OPTGROUP>
<OPTGROUP label="IRX">
<OPTION label="3.7R" value="IRX_3.7R">IRX con ComOS 3.7R</OPTION>
<OPTION label="3.5R" value="IRX_3.5R">IRX con ComOS 3.5R</OPTION>
</OPTGROUP>
</SELECT>
</FORM>

____________________________________________
<FORM action="http://algunsitio.com/prog/leer-texto" method="post">
<P>
<TEXTAREA name="eltexto" rows="20" cols="80">
Primera lnea del texto inicial.
Segunda lnea del texto inicial.
</TEXTAREA>
<INPUT type="submit" value="Enviar"><INPUT type="reset">
</P>
</FORM>

<FORM action="..." method="post">
<P>Entre la frase a buscar: <INPUT type="text"></P>
</FORM>



<FORM action="..." method="post">
<P>
<FIELDSET>
<LEGEND>Informacin Personal</LEGEND>
Apellido: <INPUT name="personal_apellido" type="text" tabindex="1">
Nombre: <INPUT name="personal_nombre" type="text" tabindex="2">
Direccin: <INPUT name="personal_direccin" type="text" tabindex="3">
...ms informacin personal...
</FIELDSET>
<FIELDSET>
<LEGEND>Historial Mdico</LEGEND>
<INPUT name="historial_enfermedades"
type="checkbox"
value="Viruela" tabindex="20"> Viruela
<INPUT name="historial_enfermedades"
type="checkbox"
value="Paperas" tabindex="21"> Paperas
<INPUT name="historial_enfermedades"
type="checkbox"
value="Mareos" tabindex="22"> Mareos
<INPUT name="historial_enfermedades"
type="checkbox"
value="Resfriado" tabindex="23"> Resfriado
...ms historial mdico...
</FIELDSET>
<FIELDSET>
<LEGEND>Medicacin Actual</LEGEND>
Est tomando actualmente algn tipo de medicacin?
<INPUT name="medicacion_ahora"
type="radio"
value="S" tabindex="35">S
<INPUT name="medicacion_ahora"
type="radio"
value="No" tabindex="35">No

Si est tomando actualmente algn tipo de medicacin, indquela
en el espacio proporcionado a continuacin:
<TEXTAREA name="medicacion_actual"
rows="20" cols="50"
tabindex="40">
</TEXTAREA>
</FIELDSET>
</FORM>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<TITLE>Un documento con FORM</TITLE>
</HEAD>
<BODY>
...texto...
<P>Ir al
<A tabindex="10" href="http://www.w3.org/">sitio web del W3C.</A>
...ms texto...
<BUTTON type="button" name="obtener-base-de-datos"
tabindex="1" onclick="obtener-base-de-datos">
Obtener la base de datos acutal.
</BUTTON>
...ms texto...
<FORM action="..." method="post">
<P>
<INPUT tabindex="1" type="text" name="campo1">
<INPUT tabindex="2" type="text" name="campo2">
<INPUT tabindex="3" type="submit" name="enviar">
</P>
</FORM>
</BODY>
</HTML>


<div class="clear">
<a class="button-left icon-ok" href="#" onclick="javascript:;"><span>Aceptar</span></a>
<a class="button-left icon-down" href="#"
onclick="javascript:;"><span>Estadsticas</span></a>
<a class="button-left icon-cancel" href="#" onclick="javascript:;"><span>Cancelar</span></a>
<a class="button-right" href="#" onclick="javascript:;"><span class="icon-
bef">Anterior</span></a>
<a class="button-left icon-seg" href="#" onclick="javascript:;"><span>Siguiente</span></a>
</div>

<a href='http://mundo-telenovelas.blogspot.com/' style='display: block'>
<img alt='Mundo Telenovelas :: Telenovelas Paraiso :: Telenovelas para descargar' height='207'
id='Header1_headerimg' src='http://i37.tinypic.com/6pyowg.jpg' style='display: block'
width='841'/>
</a>
<button>
Hola esto es un <b>botn</b>
<br>
<br>
Puedo poner saltos de lnea en l!
<hr>
Y otras cosas
<br>
<img src="http://www.desarrolloweb.com/images/logo_desarrollo_web.gif" width="261"
height="35" alt="">
</button>

<FORM NAME="aceButton"><INPUT TYPE="BUTTON" VALUE="VER EL EJEMPLO"
onClick="self.location.href=('http://www.tusite.com')"></FORM>

<input type="button" name="Button" value="datos"
onMouseOver="this.style.color='#990000'" onMouseOut="this.style.color='#000000'"
onMouseDown="this.style.color='#0000FF'" style="color:#000000; font-family:BakerSignet;
font-weight:bold; font-size:12px; background-color:#FF9999;"
onClick="MM_goToURL('parent','http://');return document.MM_returnValue">


Boton con el mismo tamao de letra del boton
<input type="button" name="Button" value="Videos"
onMouseOver="this.style.color='CC3366'" onMouseOut="this.style.color='E100E1'"
onMouseDown="this.style.color='FFCCFF'" style="color:#000000; font-family:BakerSignet;
font-weight:Text Weight; font-size:20px; background-color:FFCCFF ;"
onClick="MM_goToURL('parent','http://www.google.com.ve');return
document.MM_returnValue">

<style type="text/css">
.boton{
font-size:10px;
font-family:Verdana,Helvetica;
font-weight:bold;
color:white;
background:#638cb5;
border:0px;
width:80px;
height:19px;
}
</style>
<div align="center">
<form name="form1" action="http://www.yahoo.es" target="_blank" method="post">
<input type="text" name="prueba"><br><br>
<input type="submit" value="enviar" class="boton">
</form>
</div>
Cdigo HTML <FORM ACTION="mailto:jjloga@fcu.um.es" METHOD="POST"
Nombre: <INPUT NAME="nombre" size="30"><BR>
Te ha parecido interesante este tutorial: <SELECT NAME="interes">
<OPTION>Si
<OPTION>No
<OPTION>Regular
</SELECT><BR>
Comentario: <TEXTAREA NAME="comentario" ROWS="5"
COLS="30"></TEXTAREA><BR>
<INPUT TYPE="SUBMIT" VALUE="Enviar datos"> <INPUT TYPE="RESET"
VALUE="Borrar datos">
</FORM>
_______________________________

<HTML>
<HEAD>
<TITLE>FORMULARIOS</TITLE>
</HEAD>
<BODY>
<FORM ACTION="mailto:quantum@mundo21.com" METHOD=POST>
<table align="center" border="0">
<td align="left" width="100">Nombre:
</td>
<td align="center" width="150"><INPUT NAME="nombre" MAXLENGTH="25" TYPE="TEXT"
VALUE="">
</td>
<tr>
<td align="left" width="100">Email:
</td>
<td align="center" width="150"><INPUT NAME="mail" MAXLENGTH="25" TYPE="TEXT"
VALUE="">
</td>
<tr>
<td align="left" width="100">Motivo:
</td>
<td align="center" width="150"><INPUT NAME="motivo" MAXLENGTH="25" TYPE="TEXT"
VALUE="">
</td>
<tr>
<td align="left" width="100"> Mensaje:
</td>
<td><TEXTAREA NAME="mensaje" ROWS=3 COLS=20>
</TEXTAREA>
</td>
<tr>
<td widht="100">
</td>
<td align="right" width="150"><INPUT NAME="boton" TYPE="SUBMIT" VALUE="Enviar">
</td>
</TABLE>
</FORM>
</BODY>
</HTML>
<?php
$dia=date("m.d.Y");
$hora=date("H:i:s");
$destinatario="email@tuemail.com";
$subject= " Consulta";
$desde = 'From: ' .$_POST[email];
$contingut = "
El mensaje se a enviado el dia $dia a las $hora\n\n
----------------------------------------------------------------------------\n
Nombre: $_POST[nombre]\n
Email: $_POST[email]\n
Consulta: $_POST[consulta]\n
----------------------------------------------------------------------------\n
";
mail($destinatari, $subject, $contingut, $desde);
?>


PRIMERO: Se crea un archivo html que lo pueden llamar como ustedes quieran con el siguiente
cdigo dentro... Perfectamente pueden arreglar la pgina con lo que quieran meterle, por
supuesto a su gusto...



<form id="contacto" name="contacto" method="post" action="enviar/enviar.php">
<p align="left">
<label><strong>Nombre: </strong>
<input name="nombre" type="text" id="nombre" size="35"/>
</label>
</p>
<p align="left">
<label><strong>Empresa:</strong>
<input name="empresa" type="text" id="empresa" size="35"/>
</label>
</p>
<p align="left">
<label><strong> E-mail: </strong>
<input name="mail" type="text" id="mail" size="35"/>
</label>
</p>
<p align="left">
<label><strong>Mensaje:</strong><br />

<textarea name="mensaje" cols="40" rows="8" id="mensaje" ></textarea>
</label>
</p>
<p align="left">
<input type="submit" name="submit" value="Enviar" />
<label>
<input type="reset" name="Borrar" id="Borrar" value="Restablecer" />
</label>
</p>
</form>



Como pueden ver en el inicio del cdigo pueden ver que hace referencia a un archivo .PHP que
es el que vamos a crear y lo vamos a llamar enviar.php y va a estar dentro de una carpeta
llamada enviar que a su vez va a estar en la carpeta del sitio.

Textualmente dice:
action="enviar/enviar.php"






SEGUNDO: Ahora se crea un archivo .PHP que al igual que el del html se puede editar la parte
visual referente al archivo e insertan el siguiente cdigo:



<?php
$nombre = $_POST['nombre'];
$mail = $_POST['mail'];
$empresa = $_POST['empresa'];

$header = 'From: ' . $mail . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";

$mensaje = "Este mensaje fue enviado por... " . $nombre . ", de la empresa " . $empresa . "
\r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Fue enviado... " . date('d/m/Y', time());

$para = "TU EMAIL";
$asunto = 'ASUNTO DEL MENSAJE';


mail($para, $asunto, utf8_decode($mensaje), $header);


?>
</h2>
<h2 align="center">Gracias!</h2>

<p align="center">Tu mensaje ha sido enviado correctamente, pronto nos pondremos en
contacto con usted.</p>
<p align="center"> </p>
<p><span style="color:red;font-size:150%;font-weight:bold;"><?php print $email;
?></span></p>

<p align="center">Si no es correcto,

<script type='text/javascript'>

document.write('<a href="javascript:history.go(-1);">vuelve atras</a>');

</script>

<noscript>vuelve atras</noscript> y envialo de nuevo</p>

<script type='text/javascript'>

document.write('<p class="details"><a href="javascript:history.go(-2);">Volver a la pgina de
inicio.</a></p>');

</script>

<script type='text/javascript'>

setTimeout('history.go(-2)', 9000);

</script>

<noscript>

<p align="center" class="details">Pulsa el boton "atras" en tu navegador para volver a la
pgina anterior.</p>

</noscript>
Texto en movimiento
<br />
</p>
<p><br/>

<script language="JavaScript"><!--
var id,pause=0,position=0;
function scorrevole() {
var i,k, msg=" Bienvenidos ";
k=(100/msg.length)+1;
for(i=0;i<=k;i++) msg+=" "+msg;
document.form2.scorrevole.value=msg.substring(position,position+100);
if(position++==100) position=0;
id=setTimeout("scorrevole()",100); }
//-->
</script>



</p>
<form name=form2>
<input type="text" name="scorrevole" size="15">
</form>
width, que fija la anchura de la caja.
height, que fija la altura de la caja.
background-color, que determina el color de fondo, y cuyo valor puede venir
dado en su nombre web en ingls o como formato hexadecimal.
color, que define el color de la fuente, y cuyo valor puede venir dado en su
nombre web en ingls o como formato hexadecimal.
font-family, que fija el tipo de la fuente.
text-align, que define la alineacin del texto en la caja.
padding-right (left / top/ bottom), que fija el margen entre el extremo derecho
(izquierdo / superior /inferior) de la caja y el texto que contiene.
border-width (thin / medium / thick / none), que define el ancho del borde.
border-style (none / solid / double / groove / ridge / inset / outset), que fija el
estilo del borde.
border-color, que define el color del borde.
background-image, que establece una imagen de fondo para la caja de texto..
Este atributo no es soportado por Nestcape en ninguno de los elementos de
formulario, y simplemente lo ignora.

<br />
</p>
<p><br/>

<script language="JavaScript"><!--
var id,pause=0,position=0;
function scorrevole() {
var i,k, msg=" Bienvenidos ";
k=(100/msg.length)+1;
for(i=0;i<=k;i++) msg+=" "+msg;
document.form3.scorrevole.value=msg.substring(position,position+100);
if(position++==100) position=0;
id=setTimeout("scorrevole()",100); }
//-->
</script>



</p>

<form name=form3>
<input type="text" name="scorrevole" style="width:100px;height:30px;font-size:12pt;font-
family:Helvetica;font-weight:bold;
color:green;border-width:thin;border-style:solid;border-color:white;background-
image:url(images/1.jpg);">
</form>

CDIGO FUENTE:
1. Copie-y-pegue la PRIMERA parte del cdigo en la seccin <HEAD> de su pgina.
(En cualquier lugar entre <HEAD> y </HEAD> )...

<script type="text/javascript">
<!-- Begin
function formHandler(form){
var URL = form.site.options[form.site.selectedIndex].value;
window.location.href = URL;
// End -->
}
</script>


2. Copie-y-pegue la SEGUNDA parte del cdigo en la seccin <BODY> de su pgina.
ubicndola en el lugar donde quiere que aparezca el men desplegable...

<form name="form">
<font face="Arial, Helvetica, Sans-serif" size="-1">
Valiosos recursos Cristianos
<select name="site" size=1 onChange ="formHandler(this.form)">
<option value="">(elija una seccin)...
<option value="http://ChristianAnswers.Net/espanol">ChristianAnswers.Net Espaol
<option value="http://ChristianAnswers.Net/spanish/creation/home.html">La
SuperBiblioteca de la Creacin
<option value="http://ChristianAnswers.Net/spanish/gospel/span1.html">Es Jesucristo
la respuesta a sus preguntas?
<option value="http://ChristianAnswers.Net/espanol">Preguntas y Respuestas...
<option
value="http://ChristianAnswers.Net/spanish/archaeology/home.html">...Arqueologa
Bblica
<option value="http://ChristianAnswers.Net/spanish/menu-ar1s.html">...Religiones
<option value="http://ChristianAnswers.Net/spanish/menu-ay1s.html">...Jvenes
<option value="http://ChristianAnswers.Net/spanish/menu-at1s.html">...Teologa y La
Biblia
<option value="http://ChristianAnswers.Net/spanish/menu-ag1s.html">...Gobierno y
Sociedad
<option value="http://ChristianAnswers.Net/spanish/menu-af1s.html">...Familias y
Matrimonios
<option value="http://ChristianAnswers.Net/spanish/paradise/noentry-
spanish.html">ProhibidaNO ENTRADA
<option value="http://ChristianAnswers.Net/catalog/spanish.html">En Lnea Segura
Forma de Orden (pelculas y libros)
</select></font></form>

You might also like