CREANDO UN FORMULARIO <!DOCTYPE HTML> <html lang="es"> <head> <title>Ejemplo de Formulario</title> </head> <header><title>Formulario</title></header> <body> <form>Crear Formulario</form> <label for="nombre">Ingrese su nombre usuario:</label> <input type="Text" placeholder="Escribe tu nombre" maxlenght="45" name="nombre" id="nombre"> <br></br> <label for="contraseäa">Ingrese su contraseña:</label> <input type="Password" placeholder="Escribe tu contraseäa" maxlenght="10" name="contraseäa" id="contraseäa"> <br><br> <label for="email">Ingrese su email:</label> <input type="Email" placeholder="Escribe tu email" maxlenght="25" name="email" id="email"
Entradas populares de este blog
CREANDO MARCOS PARA PAGINAS WEB <!DOCTYPE html> <html lang="es"> <head> <meta charset=UTF-8> <title>Crear Marcos</title> </head> <frameset rows="18%,*" frameborder="yes" bordercolor="#444" marginwidth="10%" marginheight="10%" scrolling="no"> <frame src="superior.html" name="sup"></frame> <frameset cols="20%,*" frameborder="yes" bordercolor="#333" marginwidth="10%" marginheight="10%" scrolling="yes"> <frame src="izquierdo.html" name="izq"></frame> <frame src="derecho.html" name="der"></frame> </frameset> </frameset> </html>
Comentarios
Publicar un comentario