First commit 14/09/1997

This commit is contained in:
2021-09-12 22:35:00 +02:00
commit 809967a35d
59 changed files with 11789 additions and 0 deletions

41
select.htm Normal file
View File

@ -0,0 +1,41 @@
<HTML>
<HEAD>
<TITLE>Lista de seleccion</TITLE>
<BODY bgcolor="#00FFFF">
<CENTER>
<h3>Ejemplo de una lista de selecci&oacute;n sin bot&oacute;n de submit</h3>
<h3>S&oacute;lo hay que seleccionar un valor y se ejecuta la instrucci&oacute;n al hacer clik</h3>
<center>
<form>
<!-- <input type="button" value="ejecutar" onClick="top.location.href=this.form.servicio.options[this.form.servicio.selectedIndex].value;"> -->
<select name="servicio" size="8" onchange="top.location.href=this.form.servicio.options[this.form.servicio.selectedIndex].value">
<option value="indice.htm">Indice</option>
<option value="proposit.htm">Prop&oacute;sito</option>
<option value="notas.htm">Notas sobre el lenguaje</option>
<option value="como.htm">Como funciona esto</option>
<option value="intro.htm">Introducci&oacute;n al HTML</option>
<option value="estruc.htm">Estructura de un documento</option>